NodeReference
- class aws_cdk.aws_managedblockchain.NodeReference(*, node_arn, node_id)
Bases:
object
A reference to a Node resource.
- Parameters:
node_arn (
str
) – The ARN of the Node resource.node_id (
str
) – The NodeId of the Node 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_managedblockchain as managedblockchain node_reference = managedblockchain.NodeReference( node_arn="nodeArn", node_id="nodeId" )
Attributes
- node_arn
The ARN of the Node resource.
- node_id
The NodeId of the Node resource.