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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnNamespace.SnapshotCopyConfigurationPropertystatic final classAn implementation forCfnNamespace.SnapshotCopyConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationRegion
The destination AWS Region to copy snapshots to.- See Also:
-
getDestinationKmsKeyId
The ID of the KMS key to use to encrypt your snapshots in the destination AWS Region .- See Also:
-
getSnapshotRetentionPeriod
The retention period of snapshots that are copied to the destination AWS Region .- See Also:
-
builder
-