Skip to content

Commit

Permalink
Merge pull request #1293 from guardian/aa-alpha
Browse files Browse the repository at this point in the history
fix: Mark `GuKinesisLambda` and `GuSnsLambda` patterns as alpha
  • Loading branch information
akash1810 committed May 23, 2022
2 parents 156a993 + 15df7f6 commit 90178ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
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

0 comments on commit 90178ca

Please sign in to comment.