Struct aws_sdk_sagemaker::types::ParallelismConfiguration  
source · #[non_exhaustive]pub struct ParallelismConfiguration {
    pub max_parallel_execution_steps: Option<i32>,
}Expand description
Configuration that controls the parallelism of the pipeline. By default, the parallelism configuration specified applies to all executions of the pipeline unless overridden.
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.max_parallel_execution_steps: Option<i32>The max number of steps that can be executed in parallel.
Implementations§
source§impl ParallelismConfiguration
 
impl ParallelismConfiguration
sourcepub fn max_parallel_execution_steps(&self) -> Option<i32>
 
pub fn max_parallel_execution_steps(&self) -> Option<i32>
The max number of steps that can be executed in parallel.
source§impl ParallelismConfiguration
 
impl ParallelismConfiguration
sourcepub fn builder() -> ParallelismConfigurationBuilder
 
pub fn builder() -> ParallelismConfigurationBuilder
Creates a new builder-style object to manufacture ParallelismConfiguration.
Trait Implementations§
source§impl Clone for ParallelismConfiguration
 
impl Clone for ParallelismConfiguration
source§fn clone(&self) -> ParallelismConfiguration
 
fn clone(&self) -> ParallelismConfiguration
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 ParallelismConfiguration
 
impl Debug for ParallelismConfiguration
source§impl PartialEq for ParallelismConfiguration
 
impl PartialEq for ParallelismConfiguration
source§fn eq(&self, other: &ParallelismConfiguration) -> bool
 
fn eq(&self, other: &ParallelismConfiguration) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ParallelismConfiguration
Auto Trait Implementations§
impl Freeze for ParallelismConfiguration
impl RefUnwindSafe for ParallelismConfiguration
impl Send for ParallelismConfiguration
impl Sync for ParallelismConfiguration
impl Unpin for ParallelismConfiguration
impl UnwindSafe for ParallelismConfiguration
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.