interface NodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ManagedBlockchain.Mixins.CfnNodePropsMixin.NodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmanagedblockchain/mixins#CfnNodePropsMixin_NodeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.managedblockchain.mixins.CfnNodePropsMixin.NodeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_managedblockchain.mixins.CfnNodePropsMixin.NodeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_managedblockchain » mixins » 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 { mixins as managedblockchain_mixins } from '@aws-cdk/mixins-preview/aws-managedblockchain';
const nodeConfigurationProperty: managedblockchain_mixins.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