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
source§fn eq(&self, other: &RetryCriteriaBuilder) -> bool
fn eq(&self, other: &RetryCriteriaBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RetryCriteriaBuilder
Auto Trait Implementations§
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> 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.