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

S3CatalogSource

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

Specifies an Amazon S3 data store in the Glue Data Catalog.

interface S3CatalogSource {
AdditionalOptions?: S3SourceAdditionalOptions | null;
Database: string;
Name: string;
PartitionPredicate?: string | null;
Table: string;
}

§Properties

§
AdditionalOptions?: S3SourceAdditionalOptions | null
[src]

Specifies additional connection options.

§
Database: string
[src]

The database to read from.

§
Name: string
[src]

The name of the data store.

§
PartitionPredicate?: string | null
[src]

Partitions satisfying this predicate are deleted. Files within the retention period in these partitions are not deleted. Set to "" – empty by default.

§
Table: string
[src]

The database table to read from.