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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


2711
2712
2713
2714
2715
2716
# File 'lib/aws-sdk-codepipeline/types.rb', line 2711

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

#pipelinesArray<Types::PipelineSummary>

The list of pipelines.

Returns:



2711
2712
2713
2714
2715
2716
# File 'lib/aws-sdk-codepipeline/types.rb', line 2711

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