interface ExportServerSideEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataExchange.CfnEventActionPropsMixin.ExportServerSideEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdataexchange#CfnEventActionPropsMixin_ExportServerSideEncryptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dataexchange.CfnEventActionPropsMixin.ExportServerSideEncryptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_dataexchange.CfnEventActionPropsMixin.ExportServerSideEncryptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dataexchange » CfnEventActionPropsMixin » ExportServerSideEncryptionProperty |
Encryption configuration of the export job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dataexchange as dataexchange } from '@aws-cdk/cfn-property-mixins';
const exportServerSideEncryptionProperty: dataexchange.CfnEventActionPropsMixin.ExportServerSideEncryptionProperty = {
kmsKeyArn: 'kmsKeyArn',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The Amazon Resource Name (ARN) of the AWS KMS key you want to use to encrypt the Amazon S3 objects. |
| type? | string | The type of server side encryption used for encrypting the objects in Amazon S3. |
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS KMS key you want to use to encrypt the Amazon S3 objects.
type?
Type:
string
(optional)
The type of server side encryption used for encrypting the objects in Amazon S3.

.NET
Go
Java
Python
TypeScript