Interface CfnClusterSnapshotProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterSnapshotProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:17.179Z")
@Stability(Stable)
public interface CfnClusterSnapshotProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnClusterSnapshot.
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.rds.*;
CfnClusterSnapshotProps cfnClusterSnapshotProps = CfnClusterSnapshotProps.builder()
.dbClusterIdentifier("dbClusterIdentifier")
.dbClusterSnapshotIdentifier("dbClusterSnapshotIdentifier")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterSnapshotPropsstatic final classAn implementation forCfnClusterSnapshotProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDbClusterIdentifier
The identifier of the DB cluster to create a snapshot for.- See Also:
-
getDbClusterSnapshotIdentifier
The identifier for the DB cluster snapshot.Must contain from 1 to 63 letters, numbers, or hyphens. First character must be a letter. Can't end with a hyphen or contain two consecutive hyphens.
- See Also:
-
getTags
The tags to be assigned to the DB cluster snapshot.- See Also:
-
builder
- Returns:
- a
CfnClusterSnapshotProps.BuilderofCfnClusterSnapshotProps
-