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

DatabaseInput

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

The structure used to create or update a database.

interface DatabaseInput {
CreateTableDefaultPermissions?: PrincipalPermissions[] | null;
Description?: string | null;
LocationUri?: string | null;
Name: string;
Parameters?: {
[key: string]: string | null | undefined;
}
| null;
TargetDatabase?: DatabaseIdentifier | null;
}

§Properties

§
CreateTableDefaultPermissions?: PrincipalPermissions[] | null
[src]

Creates a set of default permissions on the table for principals.

§
Description?: string | null
[src]

A description of the database.

§
LocationUri?: string | null
[src]

The location of the database (for example, an HDFS path).

§
Name: string
[src]

The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.

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

These key-value pairs define parameters and properties of the database.

These key-value pairs define parameters and properties of the database.

§
TargetDatabase?: DatabaseIdentifier | null
[src]

A DatabaseIdentifier structure that describes a target database for resource linking.