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: