Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
comcalvi committed Jun 13, 2024
1 parent af40c5e commit ffaf14e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions packages/aws-cdk-lib/core/lib/stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export interface StackProps {
readonly tags?: { [key: string]: string };

/**
* foofoo
* SNS Topic ARNs that will receive stack events.
*
* @default wowowowowo
*/
Expand Down Expand Up @@ -371,6 +371,13 @@ export class Stack extends Construct implements ITaggable {
*/
public readonly _crossRegionReferences: boolean;

/**
* SNS Notification ARNs to receive stack events.
*
* @internal
*/
public readonly _notificationArns: string[];

/**
* Logical ID generation strategy
*/
Expand All @@ -390,13 +397,6 @@ export class Stack extends Construct implements ITaggable {

private readonly _stackName: string;

/**
* notification arns passed through stack props.
*
* @internal
*/
public readonly _notificationArns: string[];

/**
* Enable this flag to suppress indentation in generated
* CloudFormation templates.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class CloudFormationStackArtifact extends CloudArtifact {
public readonly tags: { [id: string]: string };

/**
* CloudFormation tags to pass to the stack.
* SNS Topics that will receive stack events.
*/
public readonly notificationArns: string[];

Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk/lib/api/util/cloudformation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class CloudFormationStack {
}

/**
* The stack's current notification ARNs.
* SNS Topic ARNs that will receive stack events.
*
* Empty list if the stack does not exist
*/
Expand Down

0 comments on commit ffaf14e

Please sign in to comment.