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.4/services/s3.ts?docs=full";

Describes how uncompressed comma-separated values (CSV)-formatted results are formatted.

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

§Properties

§
FieldDelimiter?: string | null
[src]

The value used to separate individual fields in a record. You can specify an arbitrary delimiter.

§
QuoteCharacter?: string | null
[src]

A single character used for escaping when the field delimiter is part of the value. For example, if the value is a, b, Amazon S3 wraps this field value in quotation marks, as follows: " a , b ".

§
QuoteEscapeCharacter?: string | null
[src]

The single character used for escaping the quote character inside an already escaped value.

§
QuoteFields?: QuoteFields | null
[src]

Indicates whether to use quotation marks around output fields.

  • ALWAYS: Always use quotation marks for output fields.
  • ASNEEDED: Use quotation marks for output fields when needed.
§
RecordDelimiter?: string | null
[src]

A single character used to separate individual records in the output. Instead of the default value, you can specify an arbitrary delimiter.