Struct rusoto_iot::DescribeJobExecutionRequest[][src]

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

Fields

A string (consisting of the digits "0" through "9" which is used to specify a particular job execution on a particular device.

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

The name of the thing on which the job execution is running.

Trait Implementations

impl Default for DescribeJobExecutionRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeJobExecutionRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeJobExecutionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeJobExecutionRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations