plans
Creates, updates, deletes, gets or lists a plans resource.
Overview
| Name | plans |
| Type | Resource |
| Id | aws.glue.plans |
Fields
The following fields are returned by SELECT queries:
- get_plan
| Name | Datatype | Description |
|---|---|---|
python_script | string | A Python script to perform the mapping. |
scala_code | string | The Scala code to perform the mapping. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_plan | select | region | Gets 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_plan
Gets code to perform a specified mapping.
SELECT
python_script,
scala_code
FROM aws.glue.plans
WHERE region = '{{ region }}' -- required
;