Class: Aws::DLM::Types::EncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DLM::Types::EncryptionConfiguration
- Defined in:
- gems/aws-sdk-dlm/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.
547 548 549 550 551 552 |
# File 'gems/aws-sdk-dlm/lib/aws-sdk-dlm/types.rb', line 547 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.
547 548 549 550 551 552 |
# File 'gems/aws-sdk-dlm/lib/aws-sdk-dlm/types.rb', line 547 class EncryptionConfiguration < Struct.new( :encrypted, :cmk_arn) SENSITIVE = [] include Aws::Structure end |