Class: Aws::CodePipeline::Types::ListPipelinesInput

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

Overview

Represents the input of a ListPipelines action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of pipelines to return in a single call. To retrieve the remaining pipelines, make another call with the returned nextToken value. The minimum value you can specify is 1. The maximum accepted value is 1000.

Returns:

  • (Integer)


2702
2703
2704
2705
2706
2707
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2702

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

#next_tokenString

An identifier that was returned from the previous list pipelines call. It can be used to return the next set of pipelines in the list.

Returns:

  • (String)


2702
2703
2704
2705
2706
2707
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 2702

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