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

CreateTableRequest

import type { CreateTableRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface CreateTableRequest {
CatalogId?: string | null;
DatabaseName: string;
PartitionIndexes?: PartitionIndex[] | null;
TableInput: TableInput;
TransactionId?: string | null;
}

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog in which to create the Table. If none is supplied, the Amazon Web Services account ID is used by default.

§
DatabaseName: string
[src]

The catalog database in which to create the new table. For Hive compatibility, this name is entirely lowercase.

§
PartitionIndexes?: PartitionIndex[] | null
[src]

A list of partition indexes, PartitionIndex structures, to create in the table.

§
TableInput: TableInput
[src]

The TableInput object that defines the metadata table to create in the catalog.

§
TransactionId?: string | null
[src]

The ID of the transaction.