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

DatabaseInputDefinition

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

Connection information for dataset input files stored in a database.

interface DatabaseInputDefinition {
DatabaseTableName?: string | null;
GlueConnectionName: string;
QueryString?: string | null;
TempDirectory?: S3Location | null;
}

§Properties

§
DatabaseTableName?: string | null
[src]

The table within the target database.

§
GlueConnectionName: string
[src]

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

§
QueryString?: string | null
[src]

Custom SQL to run against the provided Glue connection. This SQL will be used as the input for DataBrew projects and jobs.

§
TempDirectory?: S3Location | null
[src]