Interface CfnGraphSnapshotProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGraphSnapshotProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-24T20:29:32.679Z")
@Stability(Stable)
public interface CfnGraphSnapshotProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnGraphSnapshot.
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.neptunegraph.*;
CfnGraphSnapshotProps cfnGraphSnapshotProps = CfnGraphSnapshotProps.builder()
.snapshotName("snapshotName")
// the properties below are optional
.graphIdentifier("graphIdentifier")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGraphSnapshotPropsstatic final classAn implementation forCfnGraphSnapshotProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSnapshotName
The snapshot name.- See Also:
-
getGraphIdentifier
The unique identifier of the Neptune Analytics graph to create the snapshot from.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnGraphSnapshotProps.BuilderofCfnGraphSnapshotProps
-