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

Database

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

The Database object represents a logical grouping of tables that might reside in a Hive metastore or an RDBMS.

interface Database {
CatalogId?: string | null;
CreateTableDefaultPermissions?: PrincipalPermissions[] | null;
CreateTime?: Date | number | null;
Description?: string | null;
LocationUri?: string | null;
Name: string;
Parameters?: {
[key: string]: string | null | undefined;
}
| null;
TargetDatabase?: DatabaseIdentifier | null;
}

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog in which the database resides.

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

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

§
CreateTime?: Date | number | null
[src]

The time at which the metadata database was created in the catalog.

§
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.

§
TargetDatabase?: DatabaseIdentifier | null
[src]

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