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

GetDatabasesRequest

import type { GetDatabasesRequest } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";
interface GetDatabasesRequest {
CatalogId?: string | null;
MaxResults?: number | null;
NextToken?: string | null;
ResourceShareType?: ResourceShareType | null;
}

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog from which to retrieve Databases. If none is provided, the Amazon Web Services account ID is used by default.

§
MaxResults?: number | null
[src]

The maximum number of databases to return in one response.

§
NextToken?: string | null
[src]

A continuation token, if this is a continuation call.

§
ResourceShareType?: ResourceShareType | null
[src]

Allows you to specify that you want to list the databases shared with your account. The allowable values are FOREIGN or ALL.

  • If set to FOREIGN, will list the databases shared with your account.
  • If set to ALL, will list the databases shared with your account, as well as the databases in yor local account.