interface GraphReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_neptunegraph.GraphReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsneptunegraph#GraphReference |
Java | software.amazon.awscdk.services.neptunegraph.GraphReference |
Python | aws_cdk.aws_neptunegraph.GraphReference |
TypeScript | aws-cdk-lib » aws_neptunegraph » GraphReference |
A reference to a Graph resource.
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 graphReference: neptunegraph.GraphReference = {
graphArn: 'graphArn',
graphId: 'graphId',
};
Properties
| Name | Type | Description |
|---|---|---|
| graph | string | The ARN of the Graph resource. |
| graph | string | The GraphId of the Graph resource. |
graphArn
Type:
string
The ARN of the Graph resource.
graphId
Type:
string
The GraphId of the Graph resource.

.NET
Go
Java
Python
TypeScript