interface S3Encryption
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.Alpha.S3Encryption |
![]() | github.com/aws/aws-cdk-go/awscdkgluealpha/v2#S3Encryption |
![]() | software.amazon.awscdk.services.glue.alpha.S3Encryption |
![]() | aws_cdk.aws_glue_alpha.S3Encryption |
![]() | @aws-cdk/aws-glue-alpha » S3Encryption |
S3 encryption configuration.
Example
new glue.SecurityConfiguration(this, 'MySecurityConfiguration', {
cloudWatchEncryption: {
mode: glue.CloudWatchEncryptionMode.KMS,
},
jobBookmarksEncryption: {
mode: glue.JobBookmarksEncryptionMode.CLIENT_SIDE_KMS,
},
s3Encryption: {
mode: glue.S3EncryptionMode.KMS,
},
});
Properties
Name | Type | Description |
---|---|---|
mode | S3 | Encryption mode. |
kms | IKey | The KMS key to be used to encrypt the data. |
mode
Type:
S3
Encryption mode.
kmsKey?
Type:
IKey
(optional, default: no kms key if mode = S3_MANAGED. A key will be created if one is not provided and mode = KMS.)
The KMS key to be used to encrypt the data.