Skip to main content

sandboxes_for_projects

Creates, updates, deletes, gets or lists a sandboxes_for_projects resource.

Overview

Namesandboxes_for_projects
TypeResource
Idaws.codebuild.sandboxes_for_projects

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringInformation about the requested sandbox IDs.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_sandboxes_for_projectselectregionGets 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Gets a list of sandboxes for a given project.

SELECT
id
FROM aws.codebuild.sandboxes_for_projects
WHERE region = '{{ region }}' -- required
;