Class: Aws::S3::Types::EncryptionConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass EncryptionConfiguration data as a hash:

{
  replica_kms_key_id: "ReplicaKmsKeyID",
}

Specifies encryption-related information for an Amazon S3 bucket that is a destination for replicated objects.

Instance Attribute Summary collapse

Instance Attribute Details

#replica_kms_key_idString

Specifies the ID (Key ARN or Alias ARN) of the customer managed customer master key (CMK) stored in AWS Key Management Service (KMS) for the destination bucket. Amazon S3 uses this key to encrypt replica objects. Amazon S3 only supports symmetric customer managed CMKs. For more information, see [Using Symmetric and Asymmetric Keys] in the *AWS Key Management Service Developer Guide*.

[1]: docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html

Returns:

  • (String)


2740
2741
2742
2743
# File 'lib/aws-sdk-s3/types.rb', line 2740

class EncryptionConfiguration < Struct.new(
  :replica_kms_key_id)
  include Aws::Structure
end