Class: Aws::CodePipeline::Types::ListPipelineExecutionsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ListPipelineExecutionsOutput
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
Represents the output of a ListPipelineExecutions
action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token that can be used in the next
ListPipelineExecutions
call. -
#pipeline_execution_summaries ⇒ Array<Types::PipelineExecutionSummary>
A list of executions in the history of a pipeline.
Instance Attribute Details
#next_token ⇒ String
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.
2810 2811 2812 2813 2814 2815 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2810 class ListPipelineExecutionsOutput < Struct.new( :pipeline_execution_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |
#pipeline_execution_summaries ⇒ Array<Types::PipelineExecutionSummary>
A list of executions in the history of a pipeline.
2810 2811 2812 2813 2814 2815 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2810 class ListPipelineExecutionsOutput < Struct.new( :pipeline_execution_summaries, :next_token) SENSITIVE = [] include Aws::Structure end |