bootstrap_actions
Creates, updates, deletes, gets or lists a bootstrap_actions resource.
Overview
| Name | bootstrap_actions |
| Type | Resource |
| Id | aws.emr.bootstrap_actions |
Fields
The following fields are returned by SELECT queries:
- list_bootstrap_actions
| Name | Datatype | Description |
|---|---|---|
args | array | Arguments for Amazon EMR to pass to the command for execution. |
name | string | The name of the command. |
script_path | string | The Amazon S3 location of the command script. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_bootstrap_actions | select | region | Provides information about the bootstrap actions associated with a cluster. |
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_bootstrap_actions
Provides information about the bootstrap actions associated with a cluster.
SELECT
args,
name,
script_path
FROM aws.emr.bootstrap_actions
WHERE region = '{{ region }}' -- required
;