interface ExportServerSideEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataExchange.CfnEventAction.ExportServerSideEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdataexchange#CfnEventAction_ExportServerSideEncryptionProperty |
Java | software.amazon.awscdk.services.dataexchange.CfnEventAction.ExportServerSideEncryptionProperty |
Python | aws_cdk.aws_dataexchange.CfnEventAction.ExportServerSideEncryptionProperty |
TypeScript | aws-cdk-lib » aws_dataexchange » CfnEventAction » 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-lib';
const exportServerSideEncryptionProperty: dataexchange.CfnEventAction.ExportServerSideEncryptionProperty = {
type: 'type',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of server side encryption used for encrypting the objects in Amazon S3. |
| kms | string | The Amazon Resource Name (ARN) of the AWS KMS key you want to use to encrypt the Amazon S3 objects. |
type
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.

.NET
Go
Java
Python
TypeScript