You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ExportServerSideEncryption as input to an Aws::Client method, you can use a vanilla Hash:

{
  kms_key_arn: "__string",
  type: "aws:kms", # required, accepts aws:kms, AES256
}

Encryption configuration of the export job. Includes the encryption type as well as the AWS KMS key. The KMS key is only necessary if you chose the KMS encryption type.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_arnString

The Amazon Resource Name (ARN) of the 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)

    The Amazon Resource Name (ARN) of the the AWS KMS key you want to use to encrypt the Amazon S3 objects.

#typeString

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

Possible values:

  • aws:kms
  • AES256

Returns:

  • (String)

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