GraphReference
- class aws_cdk.aws_neptunegraph.GraphReference(*, graph_arn, graph_id)
Bases:
object
A 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 import aws_neptunegraph as neptunegraph graph_reference = 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.