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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#replica_kms_key_idString

Specifies the ID (Key ARN or Alias ARN) of the customer managed Amazon Web Services KMS key stored in Amazon Web Services Key Management Service (KMS) for the destination bucket. Amazon S3 uses this key to encrypt replica objects. Amazon S3 only supports symmetric encryption KMS keys. For more information, see Asymmetric keys in Amazon Web Services KMS in the Amazon Web Services Key Management Service Developer Guide.

Returns:

  • (String)


3106
3107
3108
3109
3110
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 3106

class EncryptionConfiguration < Struct.new(
  :replica_kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end