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

CsvOptions

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

Represents a set of options that define how DataBrew will read a comma-separated value (CSV) file when creating a dataset from that file.

interface CsvOptions {
Delimiter?: string | null;
HeaderRow?: boolean | null;
}

§Properties

§
Delimiter?: string | null
[src]

A single character that specifies the delimiter being used in the CSV file.

§
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.