Struct aws_sdk_sfn::operation::update_map_run::UpdateMapRunInput
source · #[non_exhaustive]pub struct UpdateMapRunInput {
pub map_run_arn: Option<String>,
pub max_concurrency: Option<i32>,
pub tolerated_failure_percentage: Option<f32>,
pub tolerated_failure_count: Option<i64>,
}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.map_run_arn: Option<String>The Amazon Resource Name (ARN) of a Map Run.
max_concurrency: Option<i32>The maximum number of child workflow executions that can be specified to run in parallel for the Map Run at the same time.
tolerated_failure_percentage: Option<f32>The maximum percentage of failed items before the Map Run fails.
tolerated_failure_count: Option<i64>The maximum number of failed items before the Map Run fails.
Implementations§
source§impl UpdateMapRunInput
impl UpdateMapRunInput
sourcepub fn map_run_arn(&self) -> Option<&str>
pub fn map_run_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a Map Run.
sourcepub fn max_concurrency(&self) -> Option<i32>
pub fn max_concurrency(&self) -> Option<i32>
The maximum number of child workflow executions that can be specified to run in parallel for the Map Run at the same time.
sourcepub fn tolerated_failure_percentage(&self) -> Option<f32>
pub fn tolerated_failure_percentage(&self) -> Option<f32>
The maximum percentage of failed items before the Map Run fails.
sourcepub fn tolerated_failure_count(&self) -> Option<i64>
pub fn tolerated_failure_count(&self) -> Option<i64>
The maximum number of failed items before the Map Run fails.
source§impl UpdateMapRunInput
impl UpdateMapRunInput
sourcepub fn builder() -> UpdateMapRunInputBuilder
pub fn builder() -> UpdateMapRunInputBuilder
Creates a new builder-style object to manufacture UpdateMapRunInput.
Trait Implementations§
source§impl Clone for UpdateMapRunInput
impl Clone for UpdateMapRunInput
source§fn clone(&self) -> UpdateMapRunInput
fn clone(&self) -> UpdateMapRunInput
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 UpdateMapRunInput
impl Debug for UpdateMapRunInput
source§impl PartialEq for UpdateMapRunInput
impl PartialEq for UpdateMapRunInput
source§fn eq(&self, other: &UpdateMapRunInput) -> bool
fn eq(&self, other: &UpdateMapRunInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateMapRunInput
Auto Trait Implementations§
impl Freeze for UpdateMapRunInput
impl RefUnwindSafe for UpdateMapRunInput
impl Send for UpdateMapRunInput
impl Sync for UpdateMapRunInput
impl Unpin for UpdateMapRunInput
impl UnwindSafe for UpdateMapRunInput
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>
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.