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

CreateCsvClassifierRequest

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

Specifies a custom CSV classifier for CreateClassifier to create.

interface CreateCsvClassifierRequest {
AllowSingleColumn?: boolean | null;
ContainsHeader?: CsvHeaderOption | null;
Delimiter?: string | null;
DisableValueTrimming?: boolean | null;
Header?: string[] | null;
Name: string;
QuoteSymbol?: string | 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.

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

§
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. Must be different from the column delimiter.