Class: Aws::CodePipeline::Types::ListPipelinesOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ListPipelinesOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Represents the output of a ‘ListPipelines` action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the amount of returned information is significantly large, an identifier is also returned.
-
#pipelines ⇒ Array<Types::PipelineSummary>
The list of pipelines.
Instance Attribute Details
#next_token ⇒ String
If the amount of returned information is significantly large, an identifier is also returned. It can be used in a subsequent list pipelines call to return the next set of pipelines in the list.
2884 2885 2886 2887 2888 2889 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2884 class ListPipelinesOutput < Struct.new( :pipelines, :next_token) SENSITIVE = [] include Aws::Structure end |
#pipelines ⇒ Array<Types::PipelineSummary>
The list of pipelines.
2884 2885 2886 2887 2888 2889 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2884 class ListPipelinesOutput < Struct.new( :pipelines, :next_token) SENSITIVE = [] include Aws::Structure end |