Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Mark GuKinesisLambda and GuSnsLambda patterns as alpha #1293

Merged
merged 1 commit into from May 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/patterns/kinesis-lambda.ts
Expand Up @@ -95,6 +95,8 @@ export interface GuKinesisLambdaProps extends Omit<GuFunctionProps, "errorPercen
* This pattern will create a new Kinesis stream by default. If you are migrating a stack from CloudFormation,
* you will need to opt-out of this behaviour. For information on overriding the default behaviour,
* see [[`GuKinesisLambdaProps`]].
*
* @alpha This pattern is in early development. The API is likely to change in future releases.
*/
export class GuKinesisLambda extends GuLambdaFunction {
constructor(scope: GuStack, id: string, props: GuKinesisLambdaProps) {
Expand Down
2 changes: 2 additions & 0 deletions src/patterns/sns-lambda.ts
Expand Up @@ -77,6 +77,8 @@ export interface GuSnsLambdaProps extends Omit<GuFunctionProps, "errorPercentage
* This pattern will create a new SNS topic by default. If you are migrating a stack from CloudFormation,
* you will need to opt-out of this behaviour. For information on overriding the default behaviour,
* see [[`GuSnsLambdaProps`]].
*
* @alpha This pattern is in early development. The API is likely to change in future releases.
*/
export class GuSnsLambda extends GuLambdaFunction {
constructor(scope: GuStack, id: string, props: GuSnsLambdaProps) {
Expand Down