paws.analytics (version 0.1.0)

glue_get_plan: Gets code to perform a specified mapping

Description

Gets code to perform a specified mapping.

Usage

glue_get_plan(Mapping, Source, Sinks, Location, Language)

Arguments

Mapping

[required] The list of mappings from a source table to target tables.

Source

[required] The source table.

Sinks

The target tables.

Location

Parameters for the mapping.

Language

The programming language of the code to perform the mapping.

Request syntax

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"
)