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

ApplyMapping

import type { ApplyMapping } from "https://aws-api.deno.dev/v0.4/services/glue.ts?docs=full";

Specifies a transform that maps data property keys in the data source to data property keys in the data target. You can rename keys, modify the data types for keys, and choose which keys to drop from the dataset.

interface ApplyMapping {
Inputs: string[];
Mapping: Mapping[];
Name: string;
}

§Properties

§
Inputs: string[]
[src]

The data inputs identified by their node names.

§
Mapping: Mapping[]
[src]

Specifies the mapping of data property keys in the data source to data property keys in the data target.

§
Name: string
[src]

The name of the transform node.