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

.NET
Go
Java
Python
TypeScript