CfnNodeMixinProps
- class aws_cdk.mixins_preview.aws_managedblockchain.mixins.CfnNodeMixinProps(*, member_id=None, network_id=None, node_configuration=None)
Bases:
objectProperties for CfnNodePropsMixin.
- Parameters:
member_id (
Optional[str]) – The unique identifier of the member to which the node belongs. Applies only to Hyperledger Fabric.network_id (
Optional[str]) – The unique identifier of the network for the node. Ethereum public networks have the followingNetworkIds: -n-ethereum-mainnetnode_configuration (
Union[IResolvable,NodeConfigurationProperty,Dict[str,Any],None]) – Configuration properties of a peer node.
- See:
- 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.mixins_preview.aws_managedblockchain import mixins as managedblockchain_mixins cfn_node_mixin_props = managedblockchain_mixins.CfnNodeMixinProps( member_id="memberId", network_id="networkId", node_configuration=managedblockchain_mixins.CfnNodePropsMixin.NodeConfigurationProperty( availability_zone="availabilityZone", instance_type="instanceType" ) )
Attributes
- member_id
The unique identifier of the member to which the node belongs.
Applies only to Hyperledger Fabric.
- network_id
The unique identifier of the network for the node.
Ethereum public networks have the following
NetworkIds:n-ethereum-mainnet
- node_configuration
Configuration properties of a peer node.