Class: Aws::CodePipeline::Types::PipelineExecutionSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::PipelineExecutionSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Summary information about a pipeline execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#execution_mode ⇒ String
The method that the pipeline will use to handle multiple executions.
-
#execution_type ⇒ String
Type of the pipeline execution.
-
#last_update_time ⇒ Time
The date and time of the last change to the pipeline execution, in timestamp format.
-
#pipeline_execution_id ⇒ String
The ID of the pipeline execution.
-
#rollback_metadata ⇒ Types::PipelineRollbackMetadata
The metadata for the stage execution to be rolled back.
-
#source_revisions ⇒ Array<Types::SourceRevision>
A list of the source artifact revisions that initiated a pipeline execution.
-
#start_time ⇒ Time
The date and time when the pipeline execution began, in timestamp format.
-
#status ⇒ String
The status of the pipeline execution.
-
#status_summary ⇒ String
Status summary for the pipeline.
-
#stop_trigger ⇒ Types::StopExecutionTrigger
The interaction that stopped a pipeline execution.
-
#trigger ⇒ Types::ExecutionTrigger
The interaction or event that started a pipeline execution, such as automated change detection or a ‘StartPipelineExecution` API call.
Instance Attribute Details
#execution_mode ⇒ String
The method that the pipeline will use to handle multiple executions. The default mode is SUPERSEDED.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#execution_type ⇒ String
Type of the pipeline execution.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#last_update_time ⇒ Time
The date and time of the last change to the pipeline execution, in timestamp format.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#pipeline_execution_id ⇒ String
The ID of the pipeline execution.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#rollback_metadata ⇒ Types::PipelineRollbackMetadata
The metadata for the stage execution to be rolled back.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#source_revisions ⇒ Array<Types::SourceRevision>
A list of the source artifact revisions that initiated a pipeline execution.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
The date and time when the pipeline execution began, in timestamp format.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
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.
[1]: docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped [2]: docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-superseded
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#status_summary ⇒ String
Status summary for the pipeline.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#stop_trigger ⇒ Types::StopExecutionTrigger
The interaction that stopped a pipeline execution.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |
#trigger ⇒ Types::ExecutionTrigger
The interaction or event that started a pipeline execution, such as automated change detection or a ‘StartPipelineExecution` API call.
3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3508 class PipelineExecutionSummary < Struct.new( :pipeline_execution_id, :status, :status_summary, :start_time, :last_update_time, :source_revisions, :trigger, :stop_trigger, :execution_mode, :execution_type, :rollback_metadata) SENSITIVE = [] include Aws::Structure end |