CfnGraphSnapshotProps
- class aws_cdk.aws_neptunegraph.CfnGraphSnapshotProps(*, snapshot_name, graph_identifier=None, tags=None)
Bases:
objectProperties for defining a
CfnGraphSnapshot.- Parameters:
snapshot_name (
str) – The snapshot name.graph_identifier (
Optional[str]) – The unique identifier of the Neptune Analytics graph to create the snapshot from.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_neptunegraph as neptunegraph cfn_graph_snapshot_props = neptunegraph.CfnGraphSnapshotProps( snapshot_name="snapshotName", # the properties below are optional graph_identifier="graphIdentifier", tags=[CfnTag( key="key", value="value" )] )
Attributes
- graph_identifier
The unique identifier of the Neptune Analytics graph to create the snapshot from.
- snapshot_name
The snapshot name.
- tags
An array of key-value pairs to apply to this resource.