Class: Aws::DLM::Types::EncryptionConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#cmk_arnString

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.

Returns:

  • (String)


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

#encryptedBoolean

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.

Returns:

  • (Boolean)


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