interface NodeReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ManagedBlockchain.NodeReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmanagedblockchain#NodeReference |
Java | software.amazon.awscdk.interfaces.managedblockchain.NodeReference |
Python | aws_cdk.interfaces.aws_managedblockchain.NodeReference |
TypeScript | aws-cdk-lib » interfaces » aws_managedblockchain » NodeReference |
A reference to a Node resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_managedblockchain as interfaces_aws_managedblockchain } from 'aws-cdk-lib/interfaces';
const nodeReference: interfaces_aws_managedblockchain.NodeReference = {
nodeArn: 'nodeArn',
nodeId: 'nodeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| node | string | The ARN of the Node resource. |
| node | string | The NodeId of the Node resource. |
nodeArn
Type:
string
The ARN of the Node resource.
nodeId
Type:
string
The NodeId of the Node resource.

.NET
Go
Java
Python
TypeScript