Struct aws_sdk_sagemaker::types::builders::PipelineSummaryBuilder
source · #[non_exhaustive]pub struct PipelineSummaryBuilder { /* private fields */ }
Expand description
A builder for PipelineSummary
.
Implementations§
source§impl PipelineSummaryBuilder
impl PipelineSummaryBuilder
sourcepub fn pipeline_arn(self, input: impl Into<String>) -> Self
pub fn pipeline_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn set_pipeline_arn(self, input: Option<String>) -> Self
pub fn set_pipeline_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn get_pipeline_arn(&self) -> &Option<String>
pub fn get_pipeline_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn pipeline_name(self, input: impl Into<String>) -> Self
pub fn pipeline_name(self, input: impl Into<String>) -> Self
The name of the pipeline.
sourcepub fn set_pipeline_name(self, input: Option<String>) -> Self
pub fn set_pipeline_name(self, input: Option<String>) -> Self
The name of the pipeline.
sourcepub fn get_pipeline_name(&self) -> &Option<String>
pub fn get_pipeline_name(&self) -> &Option<String>
The name of the pipeline.
sourcepub fn pipeline_display_name(self, input: impl Into<String>) -> Self
pub fn pipeline_display_name(self, input: impl Into<String>) -> Self
The display name of the pipeline.
sourcepub fn set_pipeline_display_name(self, input: Option<String>) -> Self
pub fn set_pipeline_display_name(self, input: Option<String>) -> Self
The display name of the pipeline.
sourcepub fn get_pipeline_display_name(&self) -> &Option<String>
pub fn get_pipeline_display_name(&self) -> &Option<String>
The display name of the pipeline.
sourcepub fn pipeline_description(self, input: impl Into<String>) -> Self
pub fn pipeline_description(self, input: impl Into<String>) -> Self
The description of the pipeline.
sourcepub fn set_pipeline_description(self, input: Option<String>) -> Self
pub fn set_pipeline_description(self, input: Option<String>) -> Self
The description of the pipeline.
sourcepub fn get_pipeline_description(&self) -> &Option<String>
pub fn get_pipeline_description(&self) -> &Option<String>
The description of the pipeline.
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) that the pipeline used to execute.
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) that the pipeline used to execute.
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) that the pipeline used to execute.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The creation time of the pipeline.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The creation time of the pipeline.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The creation time of the pipeline.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
The time that the pipeline was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
The time that the pipeline was last modified.
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
The time that the pipeline was last modified.
sourcepub fn last_execution_time(self, input: DateTime) -> Self
pub fn last_execution_time(self, input: DateTime) -> Self
The last time that a pipeline execution began.
sourcepub fn set_last_execution_time(self, input: Option<DateTime>) -> Self
pub fn set_last_execution_time(self, input: Option<DateTime>) -> Self
The last time that a pipeline execution began.
sourcepub fn get_last_execution_time(&self) -> &Option<DateTime>
pub fn get_last_execution_time(&self) -> &Option<DateTime>
The last time that a pipeline execution began.
sourcepub fn build(self) -> PipelineSummary
pub fn build(self) -> PipelineSummary
Consumes the builder and constructs a PipelineSummary
.
Trait Implementations§
source§impl Clone for PipelineSummaryBuilder
impl Clone for PipelineSummaryBuilder
source§fn clone(&self) -> PipelineSummaryBuilder
fn clone(&self) -> PipelineSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PipelineSummaryBuilder
impl Debug for PipelineSummaryBuilder
source§impl Default for PipelineSummaryBuilder
impl Default for PipelineSummaryBuilder
source§fn default() -> PipelineSummaryBuilder
fn default() -> PipelineSummaryBuilder
source§impl PartialEq for PipelineSummaryBuilder
impl PartialEq for PipelineSummaryBuilder
impl StructuralPartialEq for PipelineSummaryBuilder
Auto Trait Implementations§
impl Freeze for PipelineSummaryBuilder
impl RefUnwindSafe for PipelineSummaryBuilder
impl Send for PipelineSummaryBuilder
impl Sync for PipelineSummaryBuilder
impl Unpin for PipelineSummaryBuilder
impl UnwindSafe for PipelineSummaryBuilder
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