Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetPlanRequest

import type { GetPlanRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface GetPlanRequest {
AdditionalPlanOptionsMap?: {
[key: string]: string | null | undefined;
}
| null;
Language?: Language | null;
Location?: Location | null;
Mapping: MappingEntry[];
Sinks?: CatalogEntry[] | null;
Source: CatalogEntry;
}

§Properties

§
AdditionalPlanOptionsMap?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map to hold additional optional key-value parameters.

Currently, these key-value pairs are supported:

  • inferSchema  —  Specifies whether to set inferSchema to true or false for the default script generated by an Glue job. For example, to set inferSchema to true, pass the following key value pair: --additional-plan-options-map '{"inferSchema":"true"}'
§
Language?: Language | null
[src]

The programming language of the code to perform the mapping.

§
Location?: Location | null
[src]

The parameters for the mapping.

§

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

§
Sinks?: CatalogEntry[] | null
[src]

The target tables.

§

The source table.