interface EncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnSecurityConfigurationPropsMixin.EncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnSecurityConfigurationPropsMixin_EncryptionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnSecurityConfigurationPropsMixin.EncryptionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnSecurityConfigurationPropsMixin.EncryptionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnSecurityConfigurationPropsMixin » 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/cfn-property-mixins';
const encryptionConfigurationProperty: glue.CfnSecurityConfigurationPropsMixin.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