[][src]Struct rusoto_iot_jobs_data::DescribeJobExecutionRequest

pub struct DescribeJobExecutionRequest {
    pub execution_number: Option<i64>,
    pub include_job_document: Option<bool>,
    pub job_id: String,
    pub thing_name: String,
}

Fields

execution_number: Option<i64>

Optional. A number that identifies a particular job execution on a particular device. If not specified, the latest job execution is returned.

include_job_document: Option<bool>

Optional. When set to true, the response contains the job document. The default is false.

job_id: String

The unique identifier assigned to this job when it was created.

thing_name: String

The thing name associated with the device the job execution is running on.

Trait Implementations

impl Clone for DescribeJobExecutionRequest[src]

impl Debug for DescribeJobExecutionRequest[src]

impl Default for DescribeJobExecutionRequest[src]

impl PartialEq<DescribeJobExecutionRequest> for DescribeJobExecutionRequest[src]

impl Serialize for DescribeJobExecutionRequest[src]

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