Class: Aws::CodePipeline::Types::ListPipelinesOutput

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

Overview

Represents the output of a ListPipelines action.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.

Returns:

  • (String)


1831
1832
1833
1834
1835
# File 'lib/aws-sdk-codepipeline/types.rb', line 1831

class ListPipelinesOutput < Struct.new(
  :pipelines,
  :next_token)
  include Aws::Structure
end

#pipelinesArray<Types::PipelineSummary>

The list of pipelines.

Returns:



1831
1832
1833
1834
1835
# File 'lib/aws-sdk-codepipeline/types.rb', line 1831

class ListPipelinesOutput < Struct.new(
  :pipelines,
  :next_token)
  include Aws::Structure
end