Class: Aws::CodeBuild::Types::ListBuildBatchesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ListBuildBatchesInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filter ⇒ Types::BuildBatchFilter
A ‘BuildBatchFilter` object that specifies the filters for the search.
-
#max_results ⇒ Integer
The maximum number of results to return.
-
#next_token ⇒ String
The ‘nextToken` value returned from a previous call to `ListBuildBatches`.
-
#sort_order ⇒ String
Specifies the sort order of the returned items.
Instance Attribute Details
#filter ⇒ Types::BuildBatchFilter
A ‘BuildBatchFilter` object that specifies the filters for the search.
3162 3163 3164 3165 3166 3167 3168 3169 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3162 class ListBuildBatchesInput < Struct.new( :filter, :max_results, :sort_order, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return.
3162 3163 3164 3165 3166 3167 3168 3169 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3162 class ListBuildBatchesInput < Struct.new( :filter, :max_results, :sort_order, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The ‘nextToken` value returned from a previous call to `ListBuildBatches`. This specifies the next item to return. To return the beginning of the list, exclude this parameter.
3162 3163 3164 3165 3166 3167 3168 3169 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3162 class ListBuildBatchesInput < Struct.new( :filter, :max_results, :sort_order, :next_token) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ String
Specifies the sort order of the returned items. Valid values include:
-
‘ASCENDING`: List the batch build identifiers in ascending order by identifier.
-
‘DESCENDING`: List the batch build identifiers in descending order by identifier.
3162 3163 3164 3165 3166 3167 3168 3169 |
# File 'lib/aws-sdk-codebuild/types.rb', line 3162 class ListBuildBatchesInput < Struct.new( :filter, :max_results, :sort_order, :next_token) SENSITIVE = [] include Aws::Structure end |