Skip to main content

plans

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

Overview

Nameplans
TypeResource
Idaws.glue.plans

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
python_scriptstringA Python script to perform the mapping.
scala_codestringThe Scala code to perform the mapping.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_planselectregionGets code to perform a specified mapping.

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 code to perform a specified mapping.

SELECT
python_script,
scala_code
FROM aws.glue.plans
WHERE region = '{{ region }}' -- required
;