Interface CfnSnapshotMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSnapshotMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.445Z")
@Stability(Stable)
public interface CfnSnapshotMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSnapshotPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.redshiftserverless.*;
CfnSnapshotMixinProps cfnSnapshotMixinProps = CfnSnapshotMixinProps.builder()
.namespaceName("namespaceName")
.retentionPeriod(123)
.snapshotName("snapshotName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSnapshotMixinPropsstatic final classAn implementation forCfnSnapshotMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNamespaceName
The name of the namepsace.- See Also:
-
getRetentionPeriod
The retention period of the snapshot created by the scheduled action.- See Also:
-
getSnapshotName
The name of the snapshot.- See Also:
-
getTags
An array of Tag objects to associate with the snapshot.- See Also:
-
builder
- Returns:
- a
CfnSnapshotMixinProps.BuilderofCfnSnapshotMixinProps
-