interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnSecurityConfiguration.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnSecurityConfiguration_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.services.glue.CfnSecurityConfiguration.EncryptionConfigurationProperty |
Python | aws_cdk.aws_glue.CfnSecurityConfiguration.EncryptionConfigurationProperty |
TypeScript | aws-cdk-lib » 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 { aws_glue as glue } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript