interface NetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ManagedBlockchain.Mixins.CfnMemberPropsMixin.NetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmanagedblockchain/mixins#CfnMemberPropsMixin_NetworkConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.managedblockchain.mixins.CfnMemberPropsMixin.NetworkConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_managedblockchain.mixins.CfnMemberPropsMixin.NetworkConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_managedblockchain » mixins » CfnMemberPropsMixin » NetworkConfigurationProperty |
Configuration properties of the network to which the member belongs.
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 networkConfigurationProperty: managedblockchain_mixins.CfnMemberPropsMixin.NetworkConfigurationProperty = {
description: 'description',
framework: 'framework',
frameworkVersion: 'frameworkVersion',
name: 'name',
networkFrameworkConfiguration: {
networkFabricConfiguration: {
edition: 'edition',
},
},
votingPolicy: {
approvalThresholdPolicy: {
proposalDurationInHours: 123,
thresholdComparator: 'thresholdComparator',
thresholdPercentage: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | Attributes of the blockchain framework for the network. |
| framework? | string | The blockchain framework that the network uses. |
| framework | string | The version of the blockchain framework that the network uses. |
| name? | string | The name of the network. |
| network | IResolvable | Network | Configuration properties relevant to the network for the blockchain framework that the network uses. |
| voting | IResolvable | Voting | The voting rules that the network uses to decide if a proposal is accepted. |
description?
Type:
string
(optional)
Attributes of the blockchain framework for the network.
framework?
Type:
string
(optional)
The blockchain framework that the network uses.
frameworkVersion?
Type:
string
(optional)
The version of the blockchain framework that the network uses.
name?
Type:
string
(optional)
The name of the network.
networkFrameworkConfiguration?
Type:
IResolvable | Network
(optional)
Configuration properties relevant to the network for the blockchain framework that the network uses.
votingPolicy?
Type:
IResolvable | Voting
(optional)
The voting rules that the network uses to decide if a proposal is accepted.

.NET
Go
Java
Python
TypeScript