Interface CfnMember.ApprovalThresholdPolicyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMember.ApprovalThresholdPolicyProperty.Jsii$Proxy
Enclosing class:
CfnMember

@Stability(Stable) public static interface CfnMember.ApprovalThresholdPolicyProperty extends software.amazon.jsii.JsiiSerializable
A policy type that defines the voting rules for the network.

The rules decide if a proposal is approved. Approval may be based on criteria such as the percentage of YES votes and the duration of the proposal. The policy applies to all proposals and is specified when the network is created.

Applies only to Hyperledger Fabric.

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.*;
 ApprovalThresholdPolicyProperty approvalThresholdPolicyProperty = ApprovalThresholdPolicyProperty.builder()
         .proposalDurationInHours(123)
         .thresholdComparator("thresholdComparator")
         .thresholdPercentage(123)
         .build();
 

See Also: