[][src]Struct rusoto_iot::AwsJobAbortCriteria

pub struct AwsJobAbortCriteria {
    pub action: String,
    pub failure_type: String,
    pub min_number_of_executed_things: i64,
    pub threshold_percentage: f64,
}

The criteria that determine when and how a job abort takes place.

Fields

action: String

The type of job action to take to initiate the job abort.

failure_type: String

The type of job execution failures that can initiate a job abort.

min_number_of_executed_things: i64

The minimum number of things which must receive job execution notifications before the job can be aborted.

threshold_percentage: f64

The minimum percentage of job execution failures that must occur to initiate the job abort.

AWS IoT supports up to two digits after the decimal (for example, 10.9 and 10.99, but not 10.999).

Trait Implementations

impl Clone for AwsJobAbortCriteria[src]

impl Debug for AwsJobAbortCriteria[src]

impl Default for AwsJobAbortCriteria[src]

impl PartialEq<AwsJobAbortCriteria> for AwsJobAbortCriteria[src]

impl Serialize for AwsJobAbortCriteria[src]

impl StructuralPartialEq for AwsJobAbortCriteria[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> From<T> 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> Sealed<T> for T where
    T: ?Sized

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.