Class: Aws::CodePipeline::Types::ListPipelinesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ListPipelinesInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Represents the input of a ‘ListPipelines` action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of pipelines to return in a single call.
-
#next_token ⇒ String
An identifier that was returned from the previous list pipelines call.
Instance Attribute Details
#max_results ⇒ Integer
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.
2840 2841 2842 2843 2844 2845 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2840 class ListPipelinesInput < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
2840 2841 2842 2843 2844 2845 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2840 class ListPipelinesInput < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |