Interface CfnMember.NetworkConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMember.NetworkConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnMember
@Stability(Stable)
public static interface CfnMember.NetworkConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMember.NetworkConfigurationProperty
static final class
An implementation forCfnMember.NetworkConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Attributes of the blockchain framework for the network.The blockchain framework that the network uses.The version of the blockchain framework that the network uses.getName()
The name of the network.default Object
Configuration properties relevant to the network for the blockchain framework that the network uses.The voting rules that the network uses to decide if a proposal is accepted.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFramework
The blockchain framework that the network uses. -
getFrameworkVersion
The version of the blockchain framework that the network uses. -
getName
The name of the network. -
getVotingPolicy
The voting rules that the network uses to decide if a proposal is accepted. -
getDescription
Attributes of the blockchain framework for the network. -
getNetworkFrameworkConfiguration
Configuration properties relevant to the network for the blockchain framework that the network uses. -
builder
-