#[non_exhaustive]pub struct PipelineExecutionSummaryBuilder { /* private fields */ }
Expand description
A builder for PipelineExecutionSummary
.
Implementations§
source§impl PipelineExecutionSummaryBuilder
impl PipelineExecutionSummaryBuilder
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.
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 start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The start time of the pipeline execution.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The start time of the pipeline execution.
sourcepub fn pipeline_execution_status(self, input: PipelineExecutionStatus) -> Self
pub fn pipeline_execution_status(self, input: PipelineExecutionStatus) -> Self
The status of the pipeline execution.
sourcepub fn set_pipeline_execution_status(
self,
input: Option<PipelineExecutionStatus>
) -> Self
pub fn set_pipeline_execution_status( self, input: Option<PipelineExecutionStatus> ) -> Self
The status 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 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 pipeline_execution_failure_reason(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_failure_reason(self, input: impl Into<String>) -> Self
A message generated by SageMaker Pipelines describing why the pipeline execution failed.
sourcepub fn set_pipeline_execution_failure_reason(
self,
input: Option<String>
) -> Self
pub fn set_pipeline_execution_failure_reason( self, input: Option<String> ) -> Self
A message generated by SageMaker Pipelines describing why the pipeline execution failed.
sourcepub fn build(self) -> PipelineExecutionSummary
pub fn build(self) -> PipelineExecutionSummary
Consumes the builder and constructs a PipelineExecutionSummary
.
Trait Implementations§
source§impl Clone for PipelineExecutionSummaryBuilder
impl Clone for PipelineExecutionSummaryBuilder
source§fn clone(&self) -> PipelineExecutionSummaryBuilder
fn clone(&self) -> PipelineExecutionSummaryBuilder
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 Default for PipelineExecutionSummaryBuilder
impl Default for PipelineExecutionSummaryBuilder
source§fn default() -> PipelineExecutionSummaryBuilder
fn default() -> PipelineExecutionSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PipelineExecutionSummaryBuilder> for PipelineExecutionSummaryBuilder
impl PartialEq<PipelineExecutionSummaryBuilder> for PipelineExecutionSummaryBuilder
source§fn eq(&self, other: &PipelineExecutionSummaryBuilder) -> bool
fn eq(&self, other: &PipelineExecutionSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.