Struct aws_sdk_sagemaker::operation::update_pipeline_execution::builders::UpdatePipelineExecutionInputBuilder
source · #[non_exhaustive]pub struct UpdatePipelineExecutionInputBuilder { /* private fields */ }
Expand description
A builder for UpdatePipelineExecutionInput
.
Implementations§
source§impl UpdatePipelineExecutionInputBuilder
impl UpdatePipelineExecutionInputBuilder
sourcepub fn pipeline_execution_arn(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline execution.
This field is required.sourcepub fn set_pipeline_execution_arn(self, input: Option<String>) -> Self
pub fn set_pipeline_execution_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline execution.
sourcepub fn get_pipeline_execution_arn(&self) -> &Option<String>
pub fn get_pipeline_execution_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the pipeline execution.
sourcepub fn pipeline_execution_description(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_description(self, input: impl Into<String>) -> Self
The description of the pipeline execution.
sourcepub fn set_pipeline_execution_description(self, input: Option<String>) -> Self
pub fn set_pipeline_execution_description(self, input: Option<String>) -> Self
The description of the pipeline execution.
sourcepub fn get_pipeline_execution_description(&self) -> &Option<String>
pub fn get_pipeline_execution_description(&self) -> &Option<String>
The description of the pipeline execution.
sourcepub fn pipeline_execution_display_name(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_display_name(self, input: impl Into<String>) -> Self
The display name of the pipeline execution.
sourcepub fn set_pipeline_execution_display_name(self, input: Option<String>) -> Self
pub fn set_pipeline_execution_display_name(self, input: Option<String>) -> Self
The display name of the pipeline execution.
sourcepub fn get_pipeline_execution_display_name(&self) -> &Option<String>
pub fn get_pipeline_execution_display_name(&self) -> &Option<String>
The display name of the pipeline execution.
sourcepub fn parallelism_configuration(self, input: ParallelismConfiguration) -> Self
pub fn parallelism_configuration(self, input: ParallelismConfiguration) -> Self
This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
sourcepub fn set_parallelism_configuration(
self,
input: Option<ParallelismConfiguration>,
) -> Self
pub fn set_parallelism_configuration( self, input: Option<ParallelismConfiguration>, ) -> Self
This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
sourcepub fn get_parallelism_configuration(&self) -> &Option<ParallelismConfiguration>
pub fn get_parallelism_configuration(&self) -> &Option<ParallelismConfiguration>
This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.
sourcepub fn build(self) -> Result<UpdatePipelineExecutionInput, BuildError>
pub fn build(self) -> Result<UpdatePipelineExecutionInput, BuildError>
Consumes the builder and constructs a UpdatePipelineExecutionInput
.
source§impl UpdatePipelineExecutionInputBuilder
impl UpdatePipelineExecutionInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdatePipelineExecutionOutput, SdkError<UpdatePipelineExecutionError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdatePipelineExecutionOutput, SdkError<UpdatePipelineExecutionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdatePipelineExecutionInputBuilder
impl Clone for UpdatePipelineExecutionInputBuilder
source§fn clone(&self) -> UpdatePipelineExecutionInputBuilder
fn clone(&self) -> UpdatePipelineExecutionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdatePipelineExecutionInputBuilder
impl Default for UpdatePipelineExecutionInputBuilder
source§fn default() -> UpdatePipelineExecutionInputBuilder
fn default() -> UpdatePipelineExecutionInputBuilder
source§impl PartialEq for UpdatePipelineExecutionInputBuilder
impl PartialEq for UpdatePipelineExecutionInputBuilder
source§fn eq(&self, other: &UpdatePipelineExecutionInputBuilder) -> bool
fn eq(&self, other: &UpdatePipelineExecutionInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdatePipelineExecutionInputBuilder
Auto Trait Implementations§
impl Freeze for UpdatePipelineExecutionInputBuilder
impl RefUnwindSafe for UpdatePipelineExecutionInputBuilder
impl Send for UpdatePipelineExecutionInputBuilder
impl Sync for UpdatePipelineExecutionInputBuilder
impl Unpin for UpdatePipelineExecutionInputBuilder
impl UnwindSafe for UpdatePipelineExecutionInputBuilder
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
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)
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>
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>
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 more