mappings
Creates, updates, deletes, gets or lists a mappings resource.
Overview
| Name | mappings |
| Type | Resource |
| Id | aws.glue.mappings |
Fields
The following fields are returned by SELECT queries:
- get_mapping
| Name | Datatype | Description |
|---|---|---|
mapping | array | A list of mappings to the specified targets. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_mapping | select | region | Creates mappings. |
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_mapping
Creates mappings.
SELECT
mapping
FROM aws.glue.mappings
WHERE region = '{{ region }}' -- required
;