build_batches_for_projects
Creates, updates, deletes, gets or lists a build_batches_for_projects resource.
Overview
| Name | build_batches_for_projects |
| Type | Resource |
| Id | aws.codebuild.build_batches_for_projects |
Fields
The following fields are returned by SELECT queries:
- list_build_batches_for_project
| Name | Datatype | Description |
|---|---|---|
id | string | An array of strings that contains the batch build identifiers. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_build_batches_for_project | select | region | Retrieves the identifiers of the build batches for a specific project. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_build_batches_for_project
Retrieves the identifiers of the build batches for a specific project.
SELECT
id
FROM aws.codebuild.build_batches_for_projects
WHERE region = '{{ region }}' -- required
;