interface CfnNodeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ManagedBlockchain.CfnNodeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmanagedblockchain#CfnNodeMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.managedblockchain.CfnNodeMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_managedblockchain.CfnNodeMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_managedblockchain » 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 { aws_managedblockchain as managedblockchain } from '@aws-cdk/cfn-property-mixins';
const cfnNodeMixinProps: managedblockchain.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