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

DataCatalogOutput

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

Represents options that specify how and where in the Glue Data Catalog DataBrew writes the output generated by recipe jobs.

interface DataCatalogOutput {
CatalogId?: string | null;
DatabaseName: string;
DatabaseOptions?: DatabaseTableOutputOptions | null;
Overwrite?: boolean | null;
S3Options?: S3TableOutputOptions | null;
TableName: string;
}

§Properties

§
CatalogId?: string | null
[src]

The unique identifier of the Amazon Web Services account that holds the Data Catalog that stores the data.

§
DatabaseName: string
[src]

The name of a database in the Data Catalog.

§
DatabaseOptions?: DatabaseTableOutputOptions | null
[src]

Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.

§
Overwrite?: boolean | null
[src]

A value that, if true, means that any data in the location specified for output is overwritten with new output. Not supported with DatabaseOptions.

§
S3Options?: S3TableOutputOptions | null
[src]

Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.

§
TableName: string
[src]

The name of a table in the Data Catalog.