Interface CfnDBSnapshotMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBSnapshotMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:33.251Z")
@Stability(Stable)
public interface CfnDBSnapshotMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDBSnapshotPropsMixin.
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.rds.*;
CfnDBSnapshotMixinProps cfnDBSnapshotMixinProps = CfnDBSnapshotMixinProps.builder()
.dbInstanceIdentifier("dbInstanceIdentifier")
.dbSnapshotIdentifier("dbSnapshotIdentifier")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDBSnapshotMixinPropsstatic final classAn implementation forCfnDBSnapshotMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDbInstanceIdentifier
The identifier of the DB instance that you want to create the snapshot of.- See Also:
-
getDbSnapshotIdentifier
The identifier for the DB snapshot.Must contain from 1 to 255 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 snapshot.- See Also:
-
builder
- Returns:
- a
CfnDBSnapshotMixinProps.BuilderofCfnDBSnapshotMixinProps
-