Class: Aws::CodePipeline::Types::StageExecution

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb

Overview

Represents information about the run of a stage.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#pipeline_execution_idString

The ID of the pipeline execution associated with the stage.

Returns:

  • (String)


4058
4059
4060
4061
4062
4063
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4058

class StageExecution < Struct.new(
  :pipeline_execution_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end

#statusString

The status of the stage, or for a completed stage, the last status of the stage.

A status of cancelled means that the pipeline’s definition was updated before the stage execution could be completed.

Returns:

  • (String)


4058
4059
4060
4061
4062
4063
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4058

class StageExecution < Struct.new(
  :pipeline_execution_id,
  :status)
  SENSITIVE = []
  include Aws::Structure
end