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

CSVInput

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

Contains information about the comma-separated value (CSV) file to select from.

interface CSVInput {
Comments?: string | null;
FieldDelimiter?: string | null;
FileHeaderInfo?: FileHeaderInfo | null;
QuoteCharacter?: string | null;
QuoteEscapeCharacter?: string | null;
RecordDelimiter?: string | null;
}

§Properties

§
Comments?: string | null
[src]

A single character used to indicate that a row should be ignored when the character is present at the start of that row.

§
FieldDelimiter?: string | null
[src]

A value used to separate individual fields from each other within a record.

§
FileHeaderInfo?: FileHeaderInfo | null
[src]

Describes the first line of input. Valid values are None, Ignore, and Use.

§
QuoteCharacter?: string | null
[src]

A value used as an escape character where the field delimiter is part of the value.

§
QuoteEscapeCharacter?: string | null
[src]

A single character used for escaping the quotation-mark character inside an already escaped value.

§
RecordDelimiter?: string | null
[src]

A value used to separate individual records from each other.