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

CSVOutput

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

Contains information about the comma-separated value (CSV) file that the job results are stored in.

interface CSVOutput {
FieldDelimiter?: string | null;
QuoteCharacter?: string | null;
QuoteEscapeCharacter?: string | null;
QuoteFields?: QuoteFields | null;
RecordDelimiter?: string | null;
}

§Properties

§
FieldDelimiter?: string | null
[src]

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

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

§
QuoteFields?: QuoteFields | null
[src]

A value that indicates whether all output fields should be contained within quotation marks.

§
RecordDelimiter?: string | null
[src]

A value used to separate individual records from each other.