Struct aws_sdk_sagemaker::operation::update_pipeline_execution::UpdatePipelineExecutionInput
source · #[non_exhaustive]pub struct UpdatePipelineExecutionInput {
pub pipeline_execution_arn: Option<String>,
pub pipeline_execution_description: Option<String>,
pub pipeline_execution_display_name: Option<String>,
pub parallelism_configuration: Option<ParallelismConfiguration>,
}
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.pipeline_execution_arn: Option<String>
The Amazon Resource Name (ARN) of the pipeline execution.
pipeline_execution_description: Option<String>
The description of the pipeline execution.
pipeline_execution_display_name: Option<String>
The display name of the pipeline execution.
parallelism_configuration: Option<ParallelismConfiguration>
This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
Implementations§
source§impl UpdatePipelineExecutionInput
impl UpdatePipelineExecutionInput
sourcepub fn pipeline_execution_arn(&self) -> Option<&str>
pub fn pipeline_execution_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the pipeline execution.
sourcepub fn pipeline_execution_description(&self) -> Option<&str>
pub fn pipeline_execution_description(&self) -> Option<&str>
The description of the pipeline execution.
sourcepub fn pipeline_execution_display_name(&self) -> Option<&str>
pub fn pipeline_execution_display_name(&self) -> Option<&str>
The display name of the pipeline execution.
sourcepub fn parallelism_configuration(&self) -> Option<&ParallelismConfiguration>
pub fn parallelism_configuration(&self) -> Option<&ParallelismConfiguration>
This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
source§impl UpdatePipelineExecutionInput
impl UpdatePipelineExecutionInput
sourcepub fn builder() -> UpdatePipelineExecutionInputBuilder
pub fn builder() -> UpdatePipelineExecutionInputBuilder
Creates a new builder-style object to manufacture UpdatePipelineExecutionInput
.
Trait Implementations§
source§impl Clone for UpdatePipelineExecutionInput
impl Clone for UpdatePipelineExecutionInput
source§fn clone(&self) -> UpdatePipelineExecutionInput
fn clone(&self) -> UpdatePipelineExecutionInput
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 UpdatePipelineExecutionInput
impl Debug for UpdatePipelineExecutionInput
source§impl PartialEq<UpdatePipelineExecutionInput> for UpdatePipelineExecutionInput
impl PartialEq<UpdatePipelineExecutionInput> for UpdatePipelineExecutionInput
source§fn eq(&self, other: &UpdatePipelineExecutionInput) -> bool
fn eq(&self, other: &UpdatePipelineExecutionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdatePipelineExecutionInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdatePipelineExecutionInput
impl Send for UpdatePipelineExecutionInput
impl Sync for UpdatePipelineExecutionInput
impl Unpin for UpdatePipelineExecutionInput
impl UnwindSafe for UpdatePipelineExecutionInput
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