Struct aws_sdk_codepipeline::model::PipelineExecutionSummary[][src]

#[non_exhaustive]
pub struct PipelineExecutionSummary { pub pipeline_execution_id: Option<String>, pub status: Option<PipelineExecutionStatus>, pub start_time: Option<DateTime>, pub last_update_time: Option<DateTime>, pub source_revisions: Option<Vec<SourceRevision>>, pub trigger: Option<ExecutionTrigger>, pub stop_trigger: Option<StopExecutionTrigger>, }
Expand description

Summary information about a pipeline execution.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
pipeline_execution_id: Option<String>

The ID of the pipeline execution.

status: Option<PipelineExecutionStatus>

The status of the pipeline execution.

  • InProgress: The pipeline execution is currently running.

  • Stopped: The pipeline execution was manually stopped. For more information, see Stopped Executions.

  • Stopping: The pipeline execution received a request to be manually stopped. Depending on the selected stop mode, the execution is either completing or abandoning in-progress actions. For more information, see Stopped Executions.

  • Succeeded: The pipeline execution was completed successfully.

  • Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution advanced and continued through the pipeline instead. For more information, see Superseded Executions.

  • Failed: The pipeline execution was not completed successfully.

start_time: Option<DateTime>

The date and time when the pipeline execution began, in timestamp format.

last_update_time: Option<DateTime>

The date and time of the last change to the pipeline execution, in timestamp format.

source_revisions: Option<Vec<SourceRevision>>

A list of the source artifact revisions that initiated a pipeline execution.

trigger: Option<ExecutionTrigger>

The interaction or event that started a pipeline execution, such as automated change detection or a StartPipelineExecution API call.

stop_trigger: Option<StopExecutionTrigger>

The interaction that stopped a pipeline execution.

Implementations

The ID of the pipeline execution.

The status of the pipeline execution.

  • InProgress: The pipeline execution is currently running.

  • Stopped: The pipeline execution was manually stopped. For more information, see Stopped Executions.

  • Stopping: The pipeline execution received a request to be manually stopped. Depending on the selected stop mode, the execution is either completing or abandoning in-progress actions. For more information, see Stopped Executions.

  • Succeeded: The pipeline execution was completed successfully.

  • Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution advanced and continued through the pipeline instead. For more information, see Superseded Executions.

  • Failed: The pipeline execution was not completed successfully.

The date and time when the pipeline execution began, in timestamp format.

The date and time of the last change to the pipeline execution, in timestamp format.

A list of the source artifact revisions that initiated a pipeline execution.

The interaction or event that started a pipeline execution, such as automated change detection or a StartPipelineExecution API call.

The interaction that stopped a pipeline execution.

Creates a new builder-style object to manufacture PipelineExecutionSummary

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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