sandboxes_for_projects
Creates, updates, deletes, gets or lists a sandboxes_for_projects resource.
Overview
| Name | sandboxes_for_projects |
| Type | Resource |
| Id | aws.codebuild.sandboxes_for_projects |
Fields
The following fields are returned by SELECT queries:
- list_sandboxes_for_project
| Name | Datatype | Description |
|---|---|---|
id | string | Information about the requested sandbox IDs. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_sandboxes_for_project | select | region | Gets a list of sandboxes for a given 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_sandboxes_for_project
Gets a list of sandboxes for a given project.
SELECT
id
FROM aws.codebuild.sandboxes_for_projects
WHERE region = '{{ region }}' -- required
;