Struct aws_sdk_greengrassv2::model::IoTJobTimeoutConfig
source · [−]#[non_exhaustive]pub struct IoTJobTimeoutConfig {
pub in_progress_timeout_in_minutes: Option<i64>,
}
Expand description
Contains information about the timeout configuration for a job.
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.in_progress_timeout_in_minutes: Option<i64>
The amount of time, in minutes, that devices have to complete the job. The timer starts when the job status is set to IN_PROGRESS
. If the job status doesn't change to a terminal state before the time expires, then the job status is set to TIMED_OUT
.
The timeout interval must be between 1 minute and 7 days (10080 minutes).
Implementations
sourceimpl IoTJobTimeoutConfig
impl IoTJobTimeoutConfig
sourcepub fn in_progress_timeout_in_minutes(&self) -> Option<i64>
pub fn in_progress_timeout_in_minutes(&self) -> Option<i64>
The amount of time, in minutes, that devices have to complete the job. The timer starts when the job status is set to IN_PROGRESS
. If the job status doesn't change to a terminal state before the time expires, then the job status is set to TIMED_OUT
.
The timeout interval must be between 1 minute and 7 days (10080 minutes).
sourceimpl IoTJobTimeoutConfig
impl IoTJobTimeoutConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture IoTJobTimeoutConfig
Trait Implementations
sourceimpl Clone for IoTJobTimeoutConfig
impl Clone for IoTJobTimeoutConfig
sourcefn clone(&self) -> IoTJobTimeoutConfig
fn clone(&self) -> IoTJobTimeoutConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for IoTJobTimeoutConfig
impl Debug for IoTJobTimeoutConfig
sourceimpl PartialEq<IoTJobTimeoutConfig> for IoTJobTimeoutConfig
impl PartialEq<IoTJobTimeoutConfig> for IoTJobTimeoutConfig
sourcefn eq(&self, other: &IoTJobTimeoutConfig) -> bool
fn eq(&self, other: &IoTJobTimeoutConfig) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &IoTJobTimeoutConfig) -> bool
fn ne(&self, other: &IoTJobTimeoutConfig) -> bool
This method tests for !=
.
impl StructuralPartialEq for IoTJobTimeoutConfig
Auto Trait Implementations
impl RefUnwindSafe for IoTJobTimeoutConfig
impl Send for IoTJobTimeoutConfig
impl Sync for IoTJobTimeoutConfig
impl Unpin for IoTJobTimeoutConfig
impl UnwindSafe for IoTJobTimeoutConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more