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

S3CatalogHudiSource

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

Specifies a Hudi data source that is registered in the Glue Data Catalog. The Hudi data source must be stored in Amazon S3.

interface S3CatalogHudiSource {
AdditionalHudiOptions?: {
[key: string]: string | null | undefined;
}
| null;
Database: string;
Name: string;
OutputSchemas?: GlueSchema[] | null;
Table: string;
}

§Properties

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

Specifies additional connection options.

§
Database: string
[src]

The name of the database to read from.

§
Name: string
[src]

The name of the Hudi data source.

§
OutputSchemas?: GlueSchema[] | null
[src]

Specifies the data schema for the Hudi source.

§
Table: string
[src]

The name of the table in the database to read from.