pub struct PipelineExecution {
pub created_by: Option<UserContext>,
pub creation_time: Option<f64>,
pub failure_reason: Option<String>,
pub last_modified_by: Option<UserContext>,
pub last_modified_time: Option<f64>,
pub pipeline_arn: Option<String>,
pub pipeline_execution_arn: Option<String>,
pub pipeline_execution_description: Option<String>,
pub pipeline_execution_display_name: Option<String>,
pub pipeline_execution_status: Option<String>,
pub pipeline_experiment_config: Option<PipelineExperimentConfig>,
pub pipeline_parameters: Option<Vec<Parameter>>,
}
Expand description
An execution of a pipeline.
Fields§
§created_by: Option<UserContext>
§creation_time: Option<f64>
The creation time of the pipeline execution.
failure_reason: Option<String>
If the execution failed, a message describing why.
last_modified_by: Option<UserContext>
§last_modified_time: Option<f64>
The time that the pipeline execution was last modified.
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_description: Option<String>
The description of the pipeline execution.
pipeline_execution_display_name: Option<String>
The display name of the pipeline execution.
pipeline_execution_status: Option<String>
The status of the pipeline status.
pipeline_experiment_config: Option<PipelineExperimentConfig>
§pipeline_parameters: Option<Vec<Parameter>>
Contains a list of pipeline parameters. This list can be empty.
Trait Implementations§
Source§impl Clone for PipelineExecution
impl Clone for PipelineExecution
Source§fn clone(&self) -> PipelineExecution
fn clone(&self) -> PipelineExecution
Returns a duplicate 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 Debug for PipelineExecution
impl Debug for PipelineExecution
Source§impl Default for PipelineExecution
impl Default for PipelineExecution
Source§fn default() -> PipelineExecution
fn default() -> PipelineExecution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PipelineExecution
impl<'de> Deserialize<'de> for PipelineExecution
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PipelineExecution
impl PartialEq for PipelineExecution
impl StructuralPartialEq for PipelineExecution
Auto Trait Implementations§
impl Freeze for PipelineExecution
impl RefUnwindSafe for PipelineExecution
impl Send for PipelineExecution
impl Sync for PipelineExecution
impl Unpin for PipelineExecution
impl UnwindSafe for PipelineExecution
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
Mutably borrows from an owned value. Read more