CfnGraphSnapshotMixinProps

class aws_cdk.cfn_property_mixins.aws_neptunegraph.CfnGraphSnapshotMixinProps(*, graph_identifier=None, snapshot_name=None, tags=None)

Bases: object

Properties for CfnGraphSnapshotPropsMixin.

Parameters:
  • graph_identifier (Optional[str]) – The unique identifier of the Neptune Analytics graph to create the snapshot from.

  • snapshot_name (Optional[str]) – The snapshot name.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-graphsnapshot.html

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.cfn_property_mixins import aws_neptunegraph as neptunegraph

cfn_graph_snapshot_mixin_props = neptunegraph.CfnGraphSnapshotMixinProps(
    graph_identifier="graphIdentifier",
    snapshot_name="snapshotName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

graph_identifier

The unique identifier of the Neptune Analytics graph to create the snapshot from.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-graphsnapshot.html#cfn-neptunegraph-graphsnapshot-graphidentifier

snapshot_name

The snapshot name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-graphsnapshot.html#cfn-neptunegraph-graphsnapshot-snapshotname

tags

An array of key-value pairs to apply to this resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptunegraph-graphsnapshot.html#cfn-neptunegraph-graphsnapshot-tags