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.
2415 2416 2417 2418 2419 2420 2421 2422 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2415 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.
2415 2416 2417 2418 2419 2420 2421 2422 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2415 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.
2415 2416 2417 2418 2419 2420 2421 2422 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2415 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.
2415 2416 2417 2418 2419 2420 2421 2422 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2415 class ListBuildBatchesInput < Struct.new( :filter, :max_results, :sort_order, :next_token) SENSITIVE = [] include Aws::Structure end |