Interface CfnNamespace.SnapshotCopyConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNamespace.SnapshotCopyConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnNamespace

@Stability(Stable) public static interface CfnNamespace.SnapshotCopyConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The object that you configure to copy snapshots from one namespace to a namespace in another AWS Region .

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.redshiftserverless.*;
 SnapshotCopyConfigurationProperty snapshotCopyConfigurationProperty = SnapshotCopyConfigurationProperty.builder()
         .destinationRegion("destinationRegion")
         // the properties below are optional
         .destinationKmsKeyId("destinationKmsKeyId")
         .snapshotRetentionPeriod(123)
         .build();
 

See Also: