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.
3106 3107 3108 3109 3110 3111 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3106 class ListPipelinesOutput < Struct.new( :pipelines, :next_token) SENSITIVE = [] include Aws::Structure end |
#pipelines ⇒ Array<Types::PipelineSummary>
The list of pipelines.
3106 3107 3108 3109 3110 3111 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3106 class ListPipelinesOutput < Struct.new( :pipelines, :next_token) SENSITIVE = [] include Aws::Structure end |