Class: Aws::CodeBuild::Types::ListBuildBatchesForProjectInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::ListBuildBatchesForProjectInput
- 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 `ListBuildBatchesForProject`.
-
#project_name ⇒ String
The name of the project.
-
#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.
2358 2359 2360 2361 2362 2363 2364 2365 2366 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2358 class ListBuildBatchesForProjectInput < Struct.new( :project_name, :filter, :max_results, :sort_order, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return.
2358 2359 2360 2361 2362 2363 2364 2365 2366 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2358 class ListBuildBatchesForProjectInput < Struct.new( :project_name, :filter, :max_results, :sort_order, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The ‘nextToken` value returned from a previous call to `ListBuildBatchesForProject`. This specifies the next item to return. To return the beginning of the list, exclude this parameter.
2358 2359 2360 2361 2362 2363 2364 2365 2366 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2358 class ListBuildBatchesForProjectInput < Struct.new( :project_name, :filter, :max_results, :sort_order, :next_token) SENSITIVE = [] include Aws::Structure end |
#project_name ⇒ String
The name of the project.
2358 2359 2360 2361 2362 2363 2364 2365 2366 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2358 class ListBuildBatchesForProjectInput < Struct.new( :project_name, :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.
2358 2359 2360 2361 2362 2363 2364 2365 2366 |
# File 'lib/aws-sdk-codebuild/types.rb', line 2358 class ListBuildBatchesForProjectInput < Struct.new( :project_name, :filter, :max_results, :sort_order, :next_token) SENSITIVE = [] include Aws::Structure end |