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: StringThe 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§
Source§impl Clone for UpdateJobRequest
impl Clone for UpdateJobRequest
Source§fn clone(&self) -> UpdateJobRequest
fn clone(&self) -> UpdateJobRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpdateJobRequest
impl Debug for UpdateJobRequest
Source§impl Default for UpdateJobRequest
impl Default for UpdateJobRequest
Source§fn default() -> UpdateJobRequest
fn default() -> UpdateJobRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateJobRequest
impl PartialEq for UpdateJobRequest
Source§impl Serialize for UpdateJobRequest
impl Serialize for UpdateJobRequest
impl StructuralPartialEq for UpdateJobRequest
Auto Trait Implementations§
impl Freeze for UpdateJobRequest
impl RefUnwindSafe for UpdateJobRequest
impl Send for UpdateJobRequest
impl Sync for UpdateJobRequest
impl Unpin for UpdateJobRequest
impl UnwindSafe for UpdateJobRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more