Class: Aws::CodePipeline::Types::PipelineExecution

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

Overview

Represents information about an execution of a pipeline.

Instance Attribute Summary collapse

Instance Attribute Details

#artifact_revisionsArray<Types::ArtifactRevision>

A list of ArtifactRevision objects included in a pipeline execution.

Returns:



2132
2133
2134
2135
2136
2137
2138
2139
# File 'lib/aws-sdk-codepipeline/types.rb', line 2132

class PipelineExecution < Struct.new(
  :pipeline_name,
  :pipeline_version,
  :pipeline_execution_id,
  :status,
  :artifact_revisions)
  include Aws::Structure
end

#pipeline_execution_idString

The ID of the pipeline execution.

Returns:

  • (String)


2132
2133
2134
2135
2136
2137
2138
2139
# File 'lib/aws-sdk-codepipeline/types.rb', line 2132

class PipelineExecution < Struct.new(
  :pipeline_name,
  :pipeline_version,
  :pipeline_execution_id,
  :status,
  :artifact_revisions)
  include Aws::Structure
end

#pipeline_nameString

The name of the pipeline that was executed.

Returns:

  • (String)


2132
2133
2134
2135
2136
2137
2138
2139
# File 'lib/aws-sdk-codepipeline/types.rb', line 2132

class PipelineExecution < Struct.new(
  :pipeline_name,
  :pipeline_version,
  :pipeline_execution_id,
  :status,
  :artifact_revisions)
  include Aws::Structure
end

#pipeline_versionInteger

The version number of the pipeline that was executed.

Returns:

  • (Integer)


2132
2133
2134
2135
2136
2137
2138
2139
# File 'lib/aws-sdk-codepipeline/types.rb', line 2132

class PipelineExecution < Struct.new(
  :pipeline_name,
  :pipeline_version,
  :pipeline_execution_id,
  :status,
  :artifact_revisions)
  include Aws::Structure
end

#statusString

The status of the pipeline execution.

  • InProgress: The pipeline execution is currently running.

  • 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.

  • Failed: The pipeline execution was not completed successfully.

Returns:

  • (String)


2132
2133
2134
2135
2136
2137
2138
2139
# File 'lib/aws-sdk-codepipeline/types.rb', line 2132

class PipelineExecution < Struct.new(
  :pipeline_name,
  :pipeline_version,
  :pipeline_execution_id,
  :status,
  :artifact_revisions)
  include Aws::Structure
end