This is an AWS CDK L3 Construct used to demonstrate the development and publishing process with the AWS CDK.
Please refer to the blog post here for more information.
Just import and use it.
import cdk = require('@aws-cdk/core');
import {SecureBucket} from 'secure-bucket';
export class SandboxCdkStack extends cdk.Stack {
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) {
super(scope, id, props);
new SecureBucket(this, 'myBucket',{});
}
}This is just a wrapper around an S3 Bucket and the props are shared.
However, you cannot supply an UNENCRYPTED option for the encryption property. If you do, or don't set it at all, it will use the BucketEncryption.KMS_MANAGED value by default.
If you want to see full usage, you can run
$ cdk synthto produce a basic stack with one SecureBucket resource