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",
}

A container for information about the encryption-based configuration for replicas.

Instance Attribute Summary collapse

Instance Attribute Details

#replica_kms_key_idString

The ID of the AWS KMS key for the AWS Region where the destination bucket resides. Amazon S3 uses this key to encrypt the replica object.

Returns:

  • (String)


2294
2295
2296
2297
# File 'lib/aws-sdk-s3/types.rb', line 2294

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