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 AWS KMS Key ID (Key ARN or Alias ARN) for the destination bucket. Amazon S3 uses this key to encrypt replica objects.

Returns:

  • (String)


2409
2410
2411
2412
# File 'lib/aws-sdk-s3/types.rb', line 2409

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