[][src]Struct rusoto_managedblockchain::ApprovalThresholdPolicy

pub struct ApprovalThresholdPolicy {
    pub proposal_duration_in_hours: Option<i64>,
    pub threshold_comparator: Option<String>,
    pub threshold_percentage: Option<i64>,
}

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.

Fields

proposal_duration_in_hours: Option<i64>

The duration from the time that a proposal is created until it expires. If members cast neither the required number of YES votes to approve the proposal nor the number of NO votes required to reject it before the duration expires, the proposal is EXPIRED and ProposalActions are not carried out.

threshold_comparator: Option<String>

Determines whether the vote percentage must be greater than the ThresholdPercentage or must be greater than or equal to the ThreholdPercentage to be approved.

threshold_percentage: Option<i64>

The percentage of votes among all members that must be YES for a proposal to be approved. For example, a ThresholdPercentage value of 50 indicates 50%. The ThresholdComparator determines the precise comparison. If a ThresholdPercentage value of 50 is specified on a network with 10 members, along with a ThresholdComparator value of GREATER_THAN, this indicates that 6 YES votes are required for the proposal to be approved.

Trait Implementations

impl Clone for ApprovalThresholdPolicy[src]

impl Debug for ApprovalThresholdPolicy[src]

impl Default for ApprovalThresholdPolicy[src]

impl<'de> Deserialize<'de> for ApprovalThresholdPolicy[src]

impl PartialEq<ApprovalThresholdPolicy> for ApprovalThresholdPolicy[src]

impl Serialize for ApprovalThresholdPolicy[src]

impl StructuralPartialEq for ApprovalThresholdPolicy[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.