interface NodeConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.ManagedBlockchain.CfnNode.NodeConfigurationProperty | 
  Java | software.amazon.awscdk.services.managedblockchain.CfnNode.NodeConfigurationProperty | 
  Python | aws_cdk.aws_managedblockchain.CfnNode.NodeConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-managedblockchain » CfnNode » NodeConfigurationProperty | 
Configuration properties of a peer node within a membership.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as managedblockchain from '@aws-cdk/aws-managedblockchain';
const nodeConfigurationProperty: managedblockchain.CfnNode.NodeConfigurationProperty = {
  availabilityZone: 'availabilityZone',
  instanceType: 'instanceType',
};
Properties
| Name | Type | Description | 
|---|---|---|
| availability | string | The Availability Zone in which the node exists. | 
| instance | string | The Amazon Managed Blockchain instance type for the node. | 
availabilityZone
Type:
string
The Availability Zone in which the node exists.
Required for Ethereum nodes.
instanceType
Type:
string
The Amazon Managed Blockchain instance type for the node.

 .NET
 Java
 Python
 TypeScript