interface ServerSideEncryptionRuleProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.S3.CfnBucket.ServerSideEncryptionRuleProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_ServerSideEncryptionRuleProperty |
![]() | software.amazon.awscdk.services.s3.CfnBucket.ServerSideEncryptionRuleProperty |
![]() | aws_cdk.aws_s3.CfnBucket.ServerSideEncryptionRuleProperty |
![]() | aws-cdk-lib » aws_s3 » CfnBucket » ServerSideEncryptionRuleProperty |
Specifies the default server-side encryption configuration.
- General purpose buckets - If you're specifying a customer managed KMS key, we recommend using a fully qualified KMS key ARN. If you use a KMS key alias instead, then AWS KMS resolves the key within the requester’s account. This behavior can result in data that's encrypted with a KMS key that belongs to the requester, and not the bucket owner.
- Directory buckets - When you specify an AWS KMS customer managed key for encryption in your directory bucket, only use the key ID or key ARN. The key alias format of the KMS key isn't supported.
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-lib';
const serverSideEncryptionRuleProperty: s3.CfnBucket.ServerSideEncryptionRuleProperty = {
bucketKeyEnabled: false,
serverSideEncryptionByDefault: {
sseAlgorithm: 'sseAlgorithm',
// the properties below are optional
kmsMasterKeyId: 'kmsMasterKeyId',
},
};
Properties
Name | Type | Description |
---|---|---|
bucket | boolean | IResolvable | Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. |
server | IResolvable | Server | Specifies the default server-side encryption to apply to new objects in the bucket. |
bucketKeyEnabled?
Type:
boolean |
IResolvable
(optional)
Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket.
Existing objects are not affected. Setting the BucketKeyEnabled
element to true
causes Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.
For more information, see Amazon S3 Bucket Keys in the Amazon S3 User Guide .
serverSideEncryptionByDefault?
Type:
IResolvable
|
Server
(optional)
Specifies the default server-side encryption to apply to new objects in the bucket.
If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied.