diff --git a/packages/@aws-cdk/aws-s3/lib/bucket.ts b/packages/@aws-cdk/aws-s3/lib/bucket.ts index 48bb6651ff19a..5fc90c289dd24 100644 --- a/packages/@aws-cdk/aws-s3/lib/bucket.ts +++ b/packages/@aws-cdk/aws-s3/lib/bucket.ts @@ -323,14 +323,6 @@ export interface BucketProps { */ removalPolicy?: cdk.RemovalPolicy; - /** - * The bucket policy associated with this bucket. - * - * @default A bucket policy will be created automatically in the first call - * to addToPolicy. - */ - policy?: BucketPolicy; - /** * Whether this bucket should have versioning turned on or not. * @@ -379,7 +371,6 @@ export class Bucket extends BucketRef { cdk.applyRemovalPolicy(resource, props.removalPolicy); this.versioned = props.versioned; - this.policy = props.policy; this.encryptionKey = encryptionKey; this.bucketArn = resource.bucketArn; this.bucketName = resource.ref;