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.
3085 3086 3087 3088 3089 3090 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3085 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.
3085 3086 3087 3088 3089 3090 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3085 class ListPipelinesInput < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |