Class: Aws::DataExchange::Types::ExportServerSideEncryption

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#kms_key_arnString

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.

Returns:

  • (String)


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

#typeString

The type of server side encryption used for encrypting the objects in Amazon S3.

Returns:

  • (String)


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