Class: Aws::DataExchange::Types::ExportServerSideEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::ExportServerSideEncryption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dataexchange/types.rb
Overview
Encryption configuration of the export job. Includes the encryption type in addition to the AWS KMS key. The KMS key is only necessary if you chose the KMS encryption type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_arn ⇒ 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.
Instance Attribute Details
#kms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the AWS KMS key you want to use to encrypt the Amazon S3 objects. This parameter is required if you choose aws:kms as an encryption type.
1498 1499 1500 1501 1502 1503 |
# File 'lib/aws-sdk-dataexchange/types.rb', line 1498 class ExportServerSideEncryption < Struct.new( :kms_key_arn, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of server side encryption used for encrypting the objects in Amazon S3.
1498 1499 1500 1501 1502 1503 |
# File 'lib/aws-sdk-dataexchange/types.rb', line 1498 class ExportServerSideEncryption < Struct.new( :kms_key_arn, :type) SENSITIVE = [] include Aws::Structure end |