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

CreateXMLClassifierRequest

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

Specifies an XML classifier for CreateClassifier to create.

interface CreateXMLClassifierRequest {
Classification: string;
Name: string;
RowTag?: string | null;
}

§Properties

§
Classification: string
[src]

An identifier of the data format that the classifier matches.

§
Name: string
[src]

The name of the classifier.

§
RowTag?: string | null
[src]

The XML tag designating the element that contains each record in an XML document being parsed. This can't identify a self-closing element (closed by />). An empty row element that contains only attributes can be parsed as long as it ends with a closing tag (for example, <row item_a="A" item_b="B"></row> is okay, but <row item_a="A" item_b="B" /> is not).