interface S3EncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnSecurityConfigurationPropsMixin.S3EncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnSecurityConfigurationPropsMixin_S3EncryptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnSecurityConfigurationPropsMixin.S3EncryptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnSecurityConfigurationPropsMixin.S3EncryptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnSecurityConfigurationPropsMixin » S3EncryptionProperty |
Specifies how Amazon Simple Storage Service (Amazon S3) data should be encrypted.
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 s3EncryptionProperty: glue.CfnSecurityConfigurationPropsMixin.S3EncryptionProperty = {
kmsKeyArn: 'kmsKeyArn',
s3EncryptionMode: 's3EncryptionMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data. |
| s3 | string | The encryption mode to use for Amazon S3 data. |
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
s3EncryptionMode?
Type:
string
(optional)
The encryption mode to use for Amazon S3 data.

.NET
Go
Java
Python
TypeScript