interface BucketEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3.CfnBucketPropsMixin.BucketEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3#CfnBucketPropsMixin_BucketEncryptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3.CfnBucketPropsMixin.BucketEncryptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3.CfnBucketPropsMixin.BucketEncryptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3 » CfnBucketPropsMixin » BucketEncryptionProperty |
Specifies default encryption for a bucket using server-side encryption with Amazon S3-managed keys (SSE-S3), AWS KMS-managed keys (SSE-KMS), or dual-layer server-side encryption with KMS-managed keys (DSSE-KMS).
For information about the Amazon S3 default encryption feature, see Amazon S3 Default Encryption for S3 Buckets in the Amazon S3 User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3 as s3 } from '@aws-cdk/cfn-property-mixins';
const bucketEncryptionProperty: s3.CfnBucketPropsMixin.BucketEncryptionProperty = {
serverSideEncryptionConfiguration: [{
blockedEncryptionTypes: {
encryptionType: ['encryptionType'],
},
bucketKeyEnabled: false,
serverSideEncryptionByDefault: {
kmsMasterKeyId: 'kmsMasterKeyId',
sseAlgorithm: 'sseAlgorithm',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| server | IResolvable | (IResolvable | Server)[] | Specifies the default server-side-encryption configuration. |
serverSideEncryptionConfiguration?
Type:
IResolvable | (IResolvable | Server)[]
(optional)
Specifies the default server-side-encryption configuration.

.NET
Go
Java
Python
TypeScript