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

SchemaColumn

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

A key-value pair representing a column and data type that this transform can run against. The Schema parameter of the MLTransform may contain up to 100 of these structures.

interface SchemaColumn {
DataType?: string | null;
Name?: string | null;
}

§Properties

§
DataType?: string | null
[src]

The type of data in the column.

§
Name?: string | null
[src]

The name of the column.