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

DatabaseOutput

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

Represents a JDBC database output object which defines the output destination for a DataBrew recipe job to write into.

interface DatabaseOutput {
DatabaseOptions: DatabaseTableOutputOptions;
DatabaseOutputMode?: DatabaseOutputMode | null;
GlueConnectionName: string;
}

§Properties

§

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

§
DatabaseOutputMode?: DatabaseOutputMode | null
[src]

The output mode to write into the database. Currently supported option: NEW_TABLE.

§
GlueConnectionName: string
[src]

The Glue connection that stores the connection information for the target database.