interface CfnNodeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ManagedBlockchain.Mixins.CfnNodeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmanagedblockchain/mixins#CfnNodeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.managedblockchain.mixins.CfnNodeMixinProps |
Python | aws_cdk.mixins_preview.aws_managedblockchain.mixins.CfnNodeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_managedblockchain » mixins » CfnNodeMixinProps |
Properties for CfnNodePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as managedblockchain_mixins } from '@aws-cdk/mixins-preview/aws-managedblockchain';
const cfnNodeMixinProps: managedblockchain_mixins.CfnNodeMixinProps = {
memberId: 'memberId',
networkId: 'networkId',
nodeConfiguration: {
availabilityZone: 'availabilityZone',
instanceType: 'instanceType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| member | string | The unique identifier of the member to which the node belongs. |
| network | string | The unique identifier of the network for the node. |
| node | 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.
networkId?
Type:
string
(optional)
The unique identifier of the network for the node.
Ethereum public networks have the following NetworkId s:
n-ethereum-mainnet
nodeConfiguration?
Type:
IResolvable | Node
(optional)
Configuration properties of a peer node.

.NET
Go
Java
Python
TypeScript