Gets code to perform a specified mapping.
glue_get_plan(Mapping, Source, Sinks, Location, Language)[required] The list of mappings from a source table to target tables.
[required] The source table.
The target tables.
The parameters for the mapping.
The programming language of the code to perform the mapping.
svc$get_plan(
Mapping = list(
list(
SourceTable = "string",
SourcePath = "string",
SourceType = "string",
TargetTable = "string",
TargetPath = "string",
TargetType = "string"
)
),
Source = list(
DatabaseName = "string",
TableName = "string"
),
Sinks = list(
list(
DatabaseName = "string",
TableName = "string"
)
),
Location = list(
Jdbc = list(
list(
Name = "string",
Value = "string",
Param = TRUE|FALSE
)
),
S3 = list(
list(
Name = "string",
Value = "string",
Param = TRUE|FALSE
)
),
DynamoDB = list(
list(
Name = "string",
Value = "string",
Param = TRUE|FALSE
)
)
),
Language = "PYTHON"|"SCALA"
)