Gets code to perform a specified mapping.
See https://www.paws-r-sdk.com/docs/glue_get_plan/ for full documentation.
Usage
glue_get_plan(
Mapping,
Source,
Sinks = NULL,
Location = NULL,
Language = NULL,
AdditionalPlanOptionsMap = NULL
)Arguments
- Mapping
[required] The list of mappings from a source table to target tables.
- Source
[required] The source table.
- Sinks
The target tables.
- Location
The parameters for the mapping.
- Language
The programming language of the code to perform the mapping.
- AdditionalPlanOptionsMap
A map to hold additional optional key-value parameters.
Currently, these key-value pairs are supported:
inferSchema— Specifies whether to setinferSchemato true or false for the default script generated by an Glue job. For example, to setinferSchemato true, pass the following key value pair:--additional-plan-options-map '{"inferSchema":"true"}'