Class: Aws::S3::Types::EncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::EncryptionConfiguration
- 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
-
#replica_kms_key_id ⇒ String
The ID of the AWS KMS key for the AWS Region where the destination bucket resides.
Instance Attribute Details
#replica_kms_key_id ⇒ String
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.
2295 2296 2297 2298 |
# File 'lib/aws-sdk-s3/types.rb', line 2295 class EncryptionConfiguration < Struct.new( :replica_kms_key_id) include Aws::Structure end |