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

Column

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

A column in a Table.

interface Column {
Comment?: string | null;
Name: string;
Parameters?: {
[key: string]: string | null | undefined;
}
| null;
Type?: string | null;
}

§Properties

§
Comment?: string | null
[src]

A free-form text comment.

§
Name: string
[src]

The name of the Column.

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

These key-value pairs define properties associated with the column.

§
Type?: string | null
[src]

The data type of the Column.