public static interface CfnMember.NetworkConfigurationProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.managedblockchain.*; NetworkConfigurationProperty networkConfigurationProperty = NetworkConfigurationProperty.builder() .framework("framework") .frameworkVersion("frameworkVersion") .name("name") .votingPolicy(VotingPolicyProperty.builder() .approvalThresholdPolicy(ApprovalThresholdPolicyProperty.builder() .proposalDurationInHours(123) .thresholdComparator("thresholdComparator") .thresholdPercentage(123) .build()) .build()) // the properties below are optional .description("description") .networkFrameworkConfiguration(NetworkFrameworkConfigurationProperty.builder() .networkFabricConfiguration(NetworkFabricConfigurationProperty.builder() .edition("edition") .build()) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnMember.NetworkConfigurationProperty.Builder
A builder for
CfnMember.NetworkConfigurationProperty |
static class |
CfnMember.NetworkConfigurationProperty.Jsii$Proxy
An implementation for
CfnMember.NetworkConfigurationProperty |
Modifier and Type | Method and Description |
---|---|
static CfnMember.NetworkConfigurationProperty.Builder |
builder() |
default java.lang.String |
getDescription()
Attributes of the blockchain framework for the network.
|
java.lang.String |
getFramework()
The blockchain framework that the network uses.
|
java.lang.String |
getFrameworkVersion()
The version of the blockchain framework that the network uses.
|
java.lang.String |
getName()
The name of the network.
|
default java.lang.Object |
getNetworkFrameworkConfiguration()
Configuration properties relevant to the network for the blockchain framework that the network uses.
|
java.lang.Object |
getVotingPolicy()
The voting rules for the network to decide if a proposal is accepted.
|
java.lang.String getFramework()
java.lang.String getFrameworkVersion()
java.lang.String getName()
java.lang.Object getVotingPolicy()
default java.lang.String getDescription()
default java.lang.Object getNetworkFrameworkConfiguration()
static CfnMember.NetworkConfigurationProperty.Builder builder()