[][src]Struct rusoto_iot::ExponentialRolloutRate

pub struct ExponentialRolloutRate {
    pub base_rate_per_minute: i64,
    pub increment_factor: f64,
    pub rate_increase_criteria: RateIncreaseCriteria,
}

Allows you to create an exponential rate of rollout for a job.

Fields

base_rate_per_minute: i64

The minimum number of things that will be notified of a pending job, per minute at the start of job rollout. This parameter allows you to define the initial rate of rollout.

increment_factor: f64

The exponential factor to increase the rate of rollout for a job.

rate_increase_criteria: RateIncreaseCriteria

The criteria to initiate the increase in rate of rollout for a job.

AWS IoT supports up to one digit after the decimal (for example, 1.5, but not 1.55).

Trait Implementations

impl Clone for ExponentialRolloutRate[src]

impl Default for ExponentialRolloutRate[src]

impl PartialEq<ExponentialRolloutRate> for ExponentialRolloutRate[src]

impl Debug for ExponentialRolloutRate[src]

impl StructuralPartialEq for ExponentialRolloutRate[src]

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

impl Serialize for ExponentialRolloutRate[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self