Skip to main content

bootstrap_actions

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

Overview

Namebootstrap_actions
TypeResource
Idaws.emr.bootstrap_actions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
argsarrayArguments for Amazon EMR to pass to the command for execution.
namestringThe name of the command.
script_pathstringThe Amazon S3 location of the command script.

Methods

The following methods are available for this resource:

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

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

SELECT examples

Provides information about the bootstrap actions associated with a cluster.

SELECT
args,
name,
script_path
FROM aws.emr.bootstrap_actions
WHERE region = '{{ region }}' -- required
;