Skip to content

Commit

Permalink
Bug fix to address the issues deleting existing S3 event notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
Raviteja Saranga committed Jun 21, 2024
1 parent 8ccc4b3 commit 1b43806
Show file tree
Hide file tree
Showing 16 changed files with 33,813 additions and 161 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ import * as s3 from 'aws-cdk-lib/aws-s3';
import * as sns from 'aws-cdk-lib/aws-sns';
import * as cdk from 'aws-cdk-lib';
import * as s3n from 'aws-cdk-lib/aws-s3-notifications';
import { S3_EXISTING_NOTIFICATIONS_DELETE_ENABLED } from 'aws-cdk-lib/cx-api';

const app = new cdk.App();
const app = new cdk.App({
context: { [S3_EXISTING_NOTIFICATIONS_DELETE_ENABLED]: false },
});

const stack = new cdk.Stack(app, 'test-3');

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1b43806

Please sign in to comment.