Class: Aws::DLM::Types::EncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DLM::Types::EncryptionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dlm/types.rb
Overview
**[Event-based policies only]** Specifies the encryption settings for cross-Region snapshot copies created by event-based policies.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cmk_arn ⇒ String
The Amazon Resource Name (ARN) of the KMS key to use for EBS encryption.
-
#encrypted ⇒ Boolean
To encrypt a copy of an unencrypted snapshot when encryption by default is not enabled, enable encryption using this parameter.
Instance Attribute Details
#cmk_arn ⇒ String
The Amazon Resource Name (ARN) of the KMS key to use for EBS encryption. If this parameter is not specified, the default KMS key for the account is used.
561 562 563 564 565 566 |
# File 'lib/aws-sdk-dlm/types.rb', line 561 class EncryptionConfiguration < Struct.new( :encrypted, :cmk_arn) SENSITIVE = [] include Aws::Structure end |
#encrypted ⇒ Boolean
To encrypt a copy of an unencrypted snapshot when encryption by default is not enabled, enable encryption using this parameter. Copies of encrypted snapshots are encrypted, even if this parameter is false or when encryption by default is not enabled.
561 562 563 564 565 566 |
# File 'lib/aws-sdk-dlm/types.rb', line 561 class EncryptionConfiguration < Struct.new( :encrypted, :cmk_arn) SENSITIVE = [] include Aws::Structure end |