Struct aws_sdk_sagemaker::model::PipelineExecutionStep [−][src]
#[non_exhaustive]pub struct PipelineExecutionStep {
pub step_name: Option<String>,
pub start_time: Option<DateTime>,
pub end_time: Option<DateTime>,
pub step_status: Option<StepStatus>,
pub cache_hit_result: Option<CacheHitResult>,
pub failure_reason: Option<String>,
pub metadata: Option<PipelineExecutionStepMetadata>,
}
Expand description
An execution of a step in 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.step_name: Option<String>
The name of the step that is executed.
start_time: Option<DateTime>
The time that the step started executing.
end_time: Option<DateTime>
The time that the step stopped executing.
step_status: Option<StepStatus>
The status of the step execution.
cache_hit_result: Option<CacheHitResult>
If this pipeline execution step was cached, details on the cache hit.
failure_reason: Option<String>
The reason why the step failed execution. This is only returned if the step failed its execution.
metadata: Option<PipelineExecutionStepMetadata>
Metadata for the step execution.
Implementations
The time that the step started executing.
The status of the step execution.
If this pipeline execution step was cached, details on the cache hit.
The reason why the step failed execution. This is only returned if the step failed its execution.
Metadata for the step execution.
Creates a new builder-style object to manufacture PipelineExecutionStep
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 PipelineExecutionStep
impl Send for PipelineExecutionStep
impl Sync for PipelineExecutionStep
impl Unpin for PipelineExecutionStep
impl UnwindSafe for PipelineExecutionStep
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