interface CfnNodeProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ManagedBlockchain.CfnNodeProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmanagedblockchain#CfnNodeProps |
Java | software.amazon.awscdk.services.managedblockchain.CfnNodeProps |
Python | aws_cdk.aws_managedblockchain.CfnNodeProps |
TypeScript | aws-cdk-lib » aws_managedblockchain » CfnNodeProps |
Properties for defining a CfnNode
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_managedblockchain as managedblockchain } from 'aws-cdk-lib';
const cfnNodeProps: managedblockchain.CfnNodeProps = {
networkId: 'networkId',
nodeConfiguration: {
availabilityZone: 'availabilityZone',
instanceType: 'instanceType',
},
// the properties below are optional
memberId: 'memberId',
};
Properties
Name | Type | Description |
---|---|---|
network | string | The unique identifier of the network for the node. |
node | IResolvable | Node | Configuration properties of a peer node. |
member | string | The unique identifier of the member to which the node belongs. |
networkId
Type:
string
The unique identifier of the network for the node.
Ethereum public networks have the following NetworkId
s:
n-ethereum-mainnet
nodeConfiguration
Type:
IResolvable
|
Node
Configuration properties of a peer node.
memberId?
Type:
string
(optional)
The unique identifier of the member to which the node belongs.
Applies only to Hyperledger Fabric.