Skip to main content

command_executions

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

Overview

Namecommand_executions
TypeResource
Idaws.codebuild.command_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
command_executionsarrayInformation about the requested command executions.
command_executions_not_foundarrayThe IDs of command executions for which information could not be found.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_command_executionsselectregionGets information about the command executions.

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 information about the command executions.

SELECT
command_executions,
command_executions_not_found
FROM aws.codebuild.command_executions
WHERE region = '{{ region }}' -- required
;