interface NodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ManagedBlockchain.CfnNodePropsMixin.NodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmanagedblockchain#CfnNodePropsMixin_NodeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.managedblockchain.CfnNodePropsMixin.NodeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_managedblockchain.CfnNodePropsMixin.NodeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_managedblockchain » CfnNodePropsMixin » 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 { aws_managedblockchain as managedblockchain } from '@aws-cdk/cfn-property-mixins';
const nodeConfigurationProperty: managedblockchain.CfnNodePropsMixin.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
(optional)
The Availability Zone in which the node exists.
Required for Ethereum nodes.
instanceType?
Type:
string
(optional)
The Amazon Managed Blockchain instance type for the node.

.NET
Go
Java
Python
TypeScript