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();