interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnSecurityConfiguration.EncryptionConfigurationProperty |
Java | software.amazon.awscdk.services.glue.CfnSecurityConfiguration.EncryptionConfigurationProperty |
Python | aws_cdk.aws_glue.CfnSecurityConfiguration.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/aws-glue » CfnSecurityConfiguration » EncryptionConfigurationProperty |
Specifies an encryption configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as glue from '@aws-cdk/aws-glue';
const encryptionConfigurationProperty: glue.CfnSecurityConfiguration.EncryptionConfigurationProperty = {
cloudWatchEncryption: {
cloudWatchEncryptionMode: 'cloudWatchEncryptionMode',
kmsKeyArn: 'kmsKeyArn',
},
jobBookmarksEncryption: {
jobBookmarksEncryptionMode: 'jobBookmarksEncryptionMode',
kmsKeyArn: 'kmsKeyArn',
},
s3Encryptions: [{
kmsKeyArn: 'kmsKeyArn',
s3EncryptionMode: 's3EncryptionMode',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | The encryption configuration for Amazon CloudWatch. |
| job | IResolvable | Job | The encryption configuration for job bookmarks. |
| s3 | IResolvable | IResolvable | S3[] | The encyption configuration for Amazon Simple Storage Service (Amazon S3) data. |
cloudWatchEncryption?
Type:
IResolvable | Cloud
(optional)
The encryption configuration for Amazon CloudWatch.
jobBookmarksEncryption?
Type:
IResolvable | Job
(optional)
The encryption configuration for job bookmarks.
s3Encryptions?
Type:
IResolvable | IResolvable | S3[]
(optional)
The encyption configuration for Amazon Simple Storage Service (Amazon S3) data.

.NET
Java
Python
TypeScript