Struct aws_sdk_sagemaker::model::PipelineExecution [−][src]
#[non_exhaustive]pub struct PipelineExecution {
pub pipeline_arn: Option<String>,
pub pipeline_execution_arn: Option<String>,
pub pipeline_execution_display_name: Option<String>,
pub pipeline_execution_status: Option<PipelineExecutionStatus>,
pub pipeline_execution_description: Option<String>,
pub pipeline_experiment_config: Option<PipelineExperimentConfig>,
pub failure_reason: Option<String>,
pub creation_time: Option<DateTime>,
pub last_modified_time: Option<DateTime>,
pub created_by: Option<UserContext>,
pub last_modified_by: Option<UserContext>,
pub pipeline_parameters: Option<Vec<Parameter>>,
}
Expand description
An execution of a pipeline.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_arn: Option<String>
The Amazon Resource Name (ARN) of the pipeline that was executed.
pipeline_execution_arn: Option<String>
The Amazon Resource Name (ARN) of the pipeline execution.
pipeline_execution_display_name: Option<String>
The display name of the pipeline execution.
pipeline_execution_status: Option<PipelineExecutionStatus>
The status of the pipeline status.
pipeline_execution_description: Option<String>
The description of the pipeline execution.
pipeline_experiment_config: Option<PipelineExperimentConfig>
Specifies the names of the experiment and trial created by a pipeline.
failure_reason: Option<String>
If the execution failed, a message describing why.
creation_time: Option<DateTime>
The creation time of the pipeline execution.
last_modified_time: Option<DateTime>
The time that the pipeline execution was last modified.
created_by: Option<UserContext>
Information about the user who created or modified an experiment, trial, trial component, or project.
last_modified_by: Option<UserContext>
Information about the user who created or modified an experiment, trial, trial component, or project.
pipeline_parameters: Option<Vec<Parameter>>
Contains a list of pipeline parameters. This list can be empty.
Implementations
The Amazon Resource Name (ARN) of the pipeline that was executed.
The Amazon Resource Name (ARN) of the pipeline execution.
The display name of the pipeline execution.
The status of the pipeline status.
The description of the pipeline execution.
Specifies the names of the experiment and trial created by a pipeline.
If the execution failed, a message describing why.
The creation time of the pipeline execution.
The time that the pipeline execution was last modified.
Information about the user who created or modified an experiment, trial, trial component, or project.
Information about the user who created or modified an experiment, trial, trial component, or project.
Creates a new builder-style object to manufacture PipelineExecution
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for PipelineExecution
impl Send for PipelineExecution
impl Sync for PipelineExecution
impl Unpin for PipelineExecution
impl UnwindSafe for PipelineExecution
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more