Skip to main content

build_batches_for_projects

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

Overview

Namebuild_batches_for_projects
TypeResource
Idaws.codebuild.build_batches_for_projects

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringAn array of strings that contains the batch build identifiers.

Methods

The following methods are available for this resource:

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

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

SELECT examples

Retrieves the identifiers of the build batches for a specific project.

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