Class: Aws::DataExchange::Types::ExportServerSideEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataExchange::Types::ExportServerSideEncryption
- Defined in:
- gems/aws-sdk-dataexchange/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.
1173 1174 1175 1176 1177 1178 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 1173 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.
1173 1174 1175 1176 1177 1178 |
# File 'gems/aws-sdk-dataexchange/lib/aws-sdk-dataexchange/types.rb', line 1173 class ExportServerSideEncryption < Struct.new( :kms_key_arn, :type) SENSITIVE = [] include Aws::Structure end |