Struct aws_sdk_iot::input::CancelJobInput
source · #[non_exhaustive]pub struct CancelJobInput { /* private fields */ }
Implementations§
source§impl CancelJobInput
impl CancelJobInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CancelJob, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CancelJob, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CancelJob
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CancelJobInput
.
source§impl CancelJobInput
impl CancelJobInput
sourcepub fn job_id(&self) -> Option<&str>
pub fn job_id(&self) -> Option<&str>
The unique identifier you assigned to this job when it was created.
sourcepub fn reason_code(&self) -> Option<&str>
pub fn reason_code(&self) -> Option<&str>
(Optional)A reason code string that explains why the job was canceled.
sourcepub fn comment(&self) -> Option<&str>
pub fn comment(&self) -> Option<&str>
An optional comment string describing why the job was canceled.
sourcepub fn force(&self) -> bool
pub fn force(&self) -> bool
(Optional) If true
job executions with status "IN_PROGRESS" and "QUEUED" are canceled, otherwise only job executions with status "QUEUED" are canceled. The default is false
.
Canceling a job which is "IN_PROGRESS", will cause a device which is executing the job to be unable to update the job execution status. Use caution and ensure that each device executing a job which is canceled is able to recover to a valid state.
Trait Implementations§
source§impl Clone for CancelJobInput
impl Clone for CancelJobInput
source§fn clone(&self) -> CancelJobInput
fn clone(&self) -> CancelJobInput
Returns a copy 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 CancelJobInput
impl Debug for CancelJobInput
source§impl PartialEq<CancelJobInput> for CancelJobInput
impl PartialEq<CancelJobInput> for CancelJobInput
source§fn eq(&self, other: &CancelJobInput) -> bool
fn eq(&self, other: &CancelJobInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.