[][src]Struct rusoto_iot::UpdateJobRequest

pub struct UpdateJobRequest {
    pub abort_config: Option<AbortConfig>,
    pub description: Option<String>,
    pub job_executions_rollout_config: Option<JobExecutionsRolloutConfig>,
    pub job_id: String,
    pub presigned_url_config: Option<PresignedUrlConfig>,
    pub timeout_config: Option<TimeoutConfig>,
}

Fields

abort_config: Option<AbortConfig>

Allows you to create criteria to abort a job.

description: Option<String>

A short text description of the job.

job_executions_rollout_config: Option<JobExecutionsRolloutConfig>

Allows you to create a staged rollout of the job.

job_id: String

The ID of the job to be updated.

presigned_url_config: Option<PresignedUrlConfig>

Configuration information for pre-signed S3 URLs.

timeout_config: Option<TimeoutConfig>

Specifies the amount of time each device has to finish its execution of the job. The timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the time expires, it will be automatically set to TIMED_OUT.

Trait Implementations

impl Clone for UpdateJobRequest[src]

impl Default for UpdateJobRequest[src]

impl PartialEq<UpdateJobRequest> for UpdateJobRequest[src]

impl Debug for UpdateJobRequest[src]

impl StructuralPartialEq for UpdateJobRequest[src]

impl Serialize for UpdateJobRequest[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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self