Assert for the existence of a specific S3 bucket with a CDK autogenerated name – Amazon Web Sevices
Imagine a toy CDK stack with one S3 bucket: import * as cdk from '@aws-cdk/core'; import * as s3 from '@aws-cdk/aws-s3'; export class BucketStack extends cdk.Stack { constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) { super(scope, id, props); new s3.Bucket(this, 'MySpecificBucket');…