builds_for_projects
Creates, updates, deletes, gets or lists a builds_for_projects resource.
Overview
| Name | builds_for_projects |
| Type | Resource |
| Id | aws.codebuild.builds_for_projects |
Fields
The following fields are returned by SELECT queries:
- list_builds_for_project
| Name | Datatype | Description |
|---|---|---|
id | string | A list of build identifiers for the specified build project, with each build ID representing a single build. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_builds_for_project | select | region | Gets a list of build identifiers for the specified build project, with each build identifier representing a single build. |
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_builds_for_project
Gets a list of build identifiers for the specified build project, with each build identifier representing a single build.
SELECT
id
FROM aws.codebuild.builds_for_projects
WHERE region = '{{ region }}' -- required
;