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

DelimitedTextImportOptions

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

An object that contains the options relating to parsing delimited text as part of an import request.

interface DelimitedTextImportOptions {
dataCharacterEncoding?: ImportDataCharacterEncoding | null;
delimiter: string;
hasHeaderRow?: boolean | null;
ignoreEmptyRows?: boolean | null;
}

§Properties

§
dataCharacterEncoding?: ImportDataCharacterEncoding | null
[src]

The encoding of the data in the input file.

§
delimiter: string
[src]

The delimiter to use for separating columns in a single row of the input.

§
hasHeaderRow?: boolean | null
[src]

Indicates whether the input file has a header row at the top containing the column names.

§
ignoreEmptyRows?: boolean | null
[src]

A parameter to indicate whether empty rows should be ignored or be included in the import.