Struct aws_sdk_iot::operation::update_job::UpdateJobInput
source · #[non_exhaustive]pub struct UpdateJobInput {
pub job_id: Option<String>,
pub description: Option<String>,
pub presigned_url_config: Option<PresignedUrlConfig>,
pub job_executions_rollout_config: Option<JobExecutionsRolloutConfig>,
pub abort_config: Option<AbortConfig>,
pub timeout_config: Option<TimeoutConfig>,
pub namespace_id: Option<String>,
pub job_executions_retry_config: Option<JobExecutionsRetryConfig>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.job_id: Option<String>
The ID of the job to be updated.
description: Option<String>
A short text description of the job.
presigned_url_config: Option<PresignedUrlConfig>
Configuration information for pre-signed S3 URLs.
job_executions_rollout_config: Option<JobExecutionsRolloutConfig>
Allows you to create a staged rollout of the job.
abort_config: Option<AbortConfig>
Allows you to create criteria to abort a job.
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
.
namespace_id: Option<String>
The namespace used to indicate that a job is a customer-managed job.
When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.
$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/
The namespaceId
feature is in public preview.
job_executions_retry_config: Option<JobExecutionsRetryConfig>
Allows you to create the criteria to retry a job.
Implementations§
source§impl UpdateJobInput
impl UpdateJobInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A short text description of the job.
sourcepub fn presigned_url_config(&self) -> Option<&PresignedUrlConfig>
pub fn presigned_url_config(&self) -> Option<&PresignedUrlConfig>
Configuration information for pre-signed S3 URLs.
sourcepub fn job_executions_rollout_config(
&self
) -> Option<&JobExecutionsRolloutConfig>
pub fn job_executions_rollout_config( &self ) -> Option<&JobExecutionsRolloutConfig>
Allows you to create a staged rollout of the job.
sourcepub fn abort_config(&self) -> Option<&AbortConfig>
pub fn abort_config(&self) -> Option<&AbortConfig>
Allows you to create criteria to abort a job.
sourcepub fn timeout_config(&self) -> Option<&TimeoutConfig>
pub fn timeout_config(&self) -> 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
.
sourcepub fn namespace_id(&self) -> Option<&str>
pub fn namespace_id(&self) -> Option<&str>
The namespace used to indicate that a job is a customer-managed job.
When you specify a value for this parameter, Amazon Web Services IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.
$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/
The namespaceId
feature is in public preview.
sourcepub fn job_executions_retry_config(&self) -> Option<&JobExecutionsRetryConfig>
pub fn job_executions_retry_config(&self) -> Option<&JobExecutionsRetryConfig>
Allows you to create the criteria to retry a job.
source§impl UpdateJobInput
impl UpdateJobInput
sourcepub fn builder() -> UpdateJobInputBuilder
pub fn builder() -> UpdateJobInputBuilder
Creates a new builder-style object to manufacture UpdateJobInput
.
Trait Implementations§
source§impl Clone for UpdateJobInput
impl Clone for UpdateJobInput
source§fn clone(&self) -> UpdateJobInput
fn clone(&self) -> UpdateJobInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateJobInput
impl Debug for UpdateJobInput
source§impl PartialEq for UpdateJobInput
impl PartialEq for UpdateJobInput
source§fn eq(&self, other: &UpdateJobInput) -> bool
fn eq(&self, other: &UpdateJobInput) -> bool
self
and other
values to be equal, and is used
by ==
.