Struct aws_sdk_iot::types::AbortConfig
source · #[non_exhaustive]pub struct AbortConfig {
pub criteria_list: Vec<AbortCriteria>,
}
Expand description
The criteria that determine when and how a job abort takes place.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.criteria_list: Vec<AbortCriteria>
The list of criteria that determine when and how to abort the job.
Implementations§
source§impl AbortConfig
impl AbortConfig
sourcepub fn criteria_list(&self) -> &[AbortCriteria]
pub fn criteria_list(&self) -> &[AbortCriteria]
The list of criteria that determine when and how to abort the job.
source§impl AbortConfig
impl AbortConfig
sourcepub fn builder() -> AbortConfigBuilder
pub fn builder() -> AbortConfigBuilder
Creates a new builder-style object to manufacture AbortConfig
.
Trait Implementations§
source§impl Clone for AbortConfig
impl Clone for AbortConfig
source§fn clone(&self) -> AbortConfig
fn clone(&self) -> AbortConfig
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 AbortConfig
impl Debug for AbortConfig
source§impl PartialEq for AbortConfig
impl PartialEq for AbortConfig
source§fn eq(&self, other: &AbortConfig) -> bool
fn eq(&self, other: &AbortConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AbortConfig
Auto Trait Implementations§
impl Freeze for AbortConfig
impl RefUnwindSafe for AbortConfig
impl Send for AbortConfig
impl Sync for AbortConfig
impl Unpin for AbortConfig
impl UnwindSafe for AbortConfig
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.