GraphReference
- class aws_cdk.interfaces.aws_neptunegraph.GraphReference(*, graph_arn, graph_id)
Bases:
objectA reference to a Graph resource.
- Parameters:
graph_arn (
str) – The ARN of the Graph resource.graph_id (
str) – The GraphId of the Graph resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_neptunegraph as interfaces_neptunegraph graph_reference = interfaces_neptunegraph.GraphReference( graph_arn="graphArn", graph_id="graphId" )
Attributes
- graph_arn
The ARN of the Graph resource.
- graph_id
The GraphId of the Graph resource.