Interface CfnLifecyclePolicy.EncryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLifecyclePolicy.EncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnLifecyclePolicy
@Stability(Stable)
public static interface CfnLifecyclePolicy.EncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
[Event-based policies only] Specifies the encryption settings for cross-Region snapshot copies created by event-based policies.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.dlm.*; EncryptionConfigurationProperty encryptionConfigurationProperty = EncryptionConfigurationProperty.builder() .encrypted(false) // the properties below are optional .cmkArn("cmkArn") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnLifecyclePolicy.EncryptionConfigurationProperty
static final class
An implementation forCfnLifecyclePolicy.EncryptionConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncrypted
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.
- See Also:
-
getCmkArn
The Amazon Resource Name (ARN) of the AWS KMS key to use for EBS encryption.If this parameter is not specified, the default KMS key for the account is used.
- See Also:
-
builder
-