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();
 

See Also: