Struct aws_sdk_iot::types::builders::RetryCriteriaBuilder
source · #[non_exhaustive]pub struct RetryCriteriaBuilder { /* private fields */ }
Expand description
A builder for RetryCriteria
.
Implementations§
source§impl RetryCriteriaBuilder
impl RetryCriteriaBuilder
sourcepub fn failure_type(self, input: RetryableFailureType) -> Self
pub fn failure_type(self, input: RetryableFailureType) -> Self
The type of job execution failures that can initiate a job retry.
This field is required.sourcepub fn set_failure_type(self, input: Option<RetryableFailureType>) -> Self
pub fn set_failure_type(self, input: Option<RetryableFailureType>) -> Self
The type of job execution failures that can initiate a job retry.
sourcepub fn get_failure_type(&self) -> &Option<RetryableFailureType>
pub fn get_failure_type(&self) -> &Option<RetryableFailureType>
The type of job execution failures that can initiate a job retry.
sourcepub fn number_of_retries(self, input: i32) -> Self
pub fn number_of_retries(self, input: i32) -> Self
The number of retries allowed for a failure type for the job.
This field is required.sourcepub fn set_number_of_retries(self, input: Option<i32>) -> Self
pub fn set_number_of_retries(self, input: Option<i32>) -> Self
The number of retries allowed for a failure type for the job.
sourcepub fn get_number_of_retries(&self) -> &Option<i32>
pub fn get_number_of_retries(&self) -> &Option<i32>
The number of retries allowed for a failure type for the job.
sourcepub fn build(self) -> Result<RetryCriteria, BuildError>
pub fn build(self) -> Result<RetryCriteria, BuildError>
Consumes the builder and constructs a RetryCriteria
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RetryCriteriaBuilder
impl Clone for RetryCriteriaBuilder
source§fn clone(&self) -> RetryCriteriaBuilder
fn clone(&self) -> RetryCriteriaBuilder
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 RetryCriteriaBuilder
impl Debug for RetryCriteriaBuilder
source§impl Default for RetryCriteriaBuilder
impl Default for RetryCriteriaBuilder
source§fn default() -> RetryCriteriaBuilder
fn default() -> RetryCriteriaBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RetryCriteriaBuilder
impl PartialEq for RetryCriteriaBuilder
impl StructuralPartialEq for RetryCriteriaBuilder
Auto Trait Implementations§
impl Freeze for RetryCriteriaBuilder
impl RefUnwindSafe for RetryCriteriaBuilder
impl Send for RetryCriteriaBuilder
impl Sync for RetryCriteriaBuilder
impl Unpin for RetryCriteriaBuilder
impl UnwindSafe for RetryCriteriaBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.