command_executions
Creates, updates, deletes, gets or lists a command_executions resource.
Overview
| Name | command_executions |
| Type | Resource |
| Id | aws.codebuild.command_executions |
Fields
The following fields are returned by SELECT queries:
- batch_get_command_executions
| Name | Datatype | Description |
|---|---|---|
command_executions | array | Information about the requested command executions. |
command_executions_not_found | array | The IDs of command executions for which information could not be found. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_command_executions | select | region | Gets 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- batch_get_command_executions
Gets information about the command executions.
SELECT
command_executions,
command_executions_not_found
FROM aws.codebuild.command_executions
WHERE region = '{{ region }}' -- required
;