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

CsvClassifier

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

A classifier for custom CSV content.

interface CsvClassifier {
AllowSingleColumn?: boolean | null;
ContainsHeader?: CsvHeaderOption | null;
CreationTime?: Date | number | null;
Delimiter?: string | null;
DisableValueTrimming?: boolean | null;
Header?: string[] | null;
LastUpdated?: Date | number | null;
Name: string;
QuoteSymbol?: string | null;
Version?: number | null;
}

§Properties

§
AllowSingleColumn?: boolean | null
[src]

Enables the processing of files that contain only one column.

§
ContainsHeader?: CsvHeaderOption | null
[src]

Indicates whether the CSV file contains a header.

§
CreationTime?: Date | number | null
[src]

The time that this classifier was registered.

§
Delimiter?: string | null
[src]

A custom symbol to denote what separates each column entry in the row.

§
DisableValueTrimming?: boolean | null
[src]

Specifies not to trim values before identifying the type of column values. The default value is true.

§
LastUpdated?: Date | number | null
[src]

The time that this classifier was last updated.

§
Name: string
[src]

The name of the classifier.

§
QuoteSymbol?: string | null
[src]

A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.

§
Version?: number | null
[src]

The version of this classifier.