Skip to content

Commit

Permalink
fix: Mark GuKinesisLambda and GuSnsLambda patterns as alpha
Browse files Browse the repository at this point in the history
The shape of the incoming props, specifically around handling of an existing resource,
is likely to be changed over time as we understand use-cases. So, annotate these patterns as `alpha`.
  • Loading branch information
akash1810 committed May 23, 2022
1 parent 156a993 commit 15df7f6
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 15df7f6

Please sign in to comment.