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",
}
Container for information regarding encryption based configuration for replicas.
Instance Attribute Summary collapse
-
#replica_kms_key_id ⇒ String
The id of the KMS key used to encrypt the replica object.
Instance Attribute Details
#replica_kms_key_id ⇒ String
The id of the KMS key used to encrypt the replica object.
2112 2113 2114 2115 |
# File 'lib/aws-sdk-s3/types.rb', line 2112 class EncryptionConfiguration < Struct.new( :replica_kms_key_id) include Aws::Structure end |