interface CfnGraphSnapshotProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NeptuneGraph.CfnGraphSnapshotProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsneptunegraph#CfnGraphSnapshotProps |
Java | software.amazon.awscdk.services.neptunegraph.CfnGraphSnapshotProps |
Python | aws_cdk.aws_neptunegraph.CfnGraphSnapshotProps |
TypeScript | aws-cdk-lib » aws_neptunegraph » CfnGraphSnapshotProps |
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 { aws_neptunegraph as neptunegraph } from 'aws-cdk-lib';
const cfnGraphSnapshotProps: neptunegraph.CfnGraphSnapshotProps = {
snapshotName: 'snapshotName',
// the properties below are optional
graphIdentifier: 'graphIdentifier',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| snapshot | string | The snapshot name. |
| graph | string | The unique identifier of the Neptune Analytics graph to create the snapshot from. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
snapshotName
Type:
string
The snapshot name.
graphIdentifier?
Type:
string
(optional)
The unique identifier of the Neptune Analytics graph to create the snapshot from.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript