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

CsvFormatDescriptor

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

Contains information about how a source CSV data file should be analyzed.

interface CsvFormatDescriptor {
Charset?: string | null;
ContainsHeader?: boolean | null;
Delimiter?: string | null;
FileCompression?: CSVFileCompression | null;
HeaderList?: string[] | null;
QuoteSymbol?: string | null;
}

§Properties

§
Charset?: string | null
[src]

The character set in which the source CSV file is written.

§
ContainsHeader?: boolean | null
[src]

Whether or not the source CSV file contains a header.

§
Delimiter?: string | null
[src]

The character used to delimit the source CSV file.

§
FileCompression?: CSVFileCompression | null
[src]

The level of compression of the source CSV file.

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

A list of the source CSV file's headers, if any.

§
QuoteSymbol?: string | null
[src]

The character used as a quote character.