Bucket with content cleanup to allow bucket deletion when the stack will be destroyed
TypeScript/JavaScript:
npm i @cloudcomponents/cdk-deletable-bucketPython:
pip install cloudcomponents.cdk-deletable-bucketimport { Construct, Stack, StackProps } from '@aws-cdk/core';
import { DeletableBucket } from '@cloudcomponents/cdk-deletable-bucket';
export class DeletableBucketStack extends Stack {
constructor(scope: Construct, id: string, props?: StackProps) {
super(scope, id, props);
new DeletableBucket(this, 'DeletableBucket', {
bucketName: 'bucket2delete',
forceDelete: true,
});
}
}See API.md.
See more complete examples.
