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

ExcelOptions

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

Represents a set of options that define how DataBrew will interpret a Microsoft Excel file when creating a dataset from that file.

interface ExcelOptions {
HeaderRow?: boolean | null;
SheetIndexes?: number[] | null;
SheetNames?: string[] | null;
}

§Properties

§
HeaderRow?: boolean | null
[src]

A variable that specifies whether the first row in the file is parsed as the header. If this value is false, column names are auto-generated.

§
SheetIndexes?: number[] | null
[src]

One or more sheet numbers in the Excel file that will be included in the dataset.

§
SheetNames?: string[] | null
[src]

One or more named sheets in the Excel file that will be included in the dataset.