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.
2863 2864 2865 2866 2867 2868 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2863 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.
2863 2864 2865 2866 2867 2868 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2863 class ListPipelinesInput < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |