Class: Aws::CodePipeline::Types::ListPipelineExecutionsOutput

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

Overview

Represents the output of a ListPipelineExecutions action.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

A token that can be used in the next ListPipelineExecutions call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.

Returns:

  • (String)


1789
1790
1791
1792
1793
# File 'lib/aws-sdk-codepipeline/types.rb', line 1789

class ListPipelineExecutionsOutput < Struct.new(
  :pipeline_execution_summaries,
  :next_token)
  include Aws::Structure
end

#pipeline_execution_summariesArray<Types::PipelineExecutionSummary>

A list of executions in the history of a pipeline.



1789
1790
1791
1792
1793
# File 'lib/aws-sdk-codepipeline/types.rb', line 1789

class ListPipelineExecutionsOutput < Struct.new(
  :pipeline_execution_summaries,
  :next_token)
  include Aws::Structure
end