Get Mapping
glue_get_mapping | R Documentation |
Creates mappings¶
Description¶
Creates mappings.
Usage¶
glue_get_mapping(Source, Sinks, Location)
Arguments¶
Source |
[required] Specifies the source table. |
Sinks |
A list of target tables. |
Location |
Parameters for the mapping. |
Value¶
A list with the following syntax:
list(
Mapping = list(
list(
SourceTable = "string",
SourcePath = "string",
SourceType = "string",
TargetTable = "string",
TargetPath = "string",
TargetType = "string"
)
)
)
Request syntax¶
svc$get_mapping(
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
)
)
)
)