[][src]Struct rusoto_emr::DescribeJobFlowsInput

pub struct DescribeJobFlowsInput {
    pub created_after: Option<f64>,
    pub created_before: Option<f64>,
    pub job_flow_ids: Option<Vec<String>>,
    pub job_flow_states: Option<Vec<String>>,
}

The input for the DescribeJobFlows operation.

Fields

created_after: Option<f64>

Return only job flows created after this date and time.

created_before: Option<f64>

Return only job flows created before this date and time.

job_flow_ids: Option<Vec<String>>

Return only job flows whose job flow ID is contained in this list.

job_flow_states: Option<Vec<String>>

Return only job flows whose state is contained in this list.

Trait Implementations

impl Clone for DescribeJobFlowsInput[src]

impl Debug for DescribeJobFlowsInput[src]

impl Default for DescribeJobFlowsInput[src]

impl PartialEq<DescribeJobFlowsInput> for DescribeJobFlowsInput[src]

impl Serialize for DescribeJobFlowsInput[src]

impl StructuralPartialEq for DescribeJobFlowsInput[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> 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.