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

FormatOptions

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

Represents a set of options that define the structure of either comma-separated value (CSV), Excel, or JSON input.

interface FormatOptions {
Csv?: CsvOptions | null;
Excel?: ExcelOptions | null;
Json?: JsonOptions | null;
}

§Properties

§
Csv?: CsvOptions | null
[src]

Options that define how CSV input is to be interpreted by DataBrew.

§
Excel?: ExcelOptions | null
[src]

Options that define how Excel input is to be interpreted by DataBrew.

§
Json?: JsonOptions | null
[src]

Options that define how JSON input is to be interpreted by DataBrew.