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

SerDeInfo

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

Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.

interface SerDeInfo {
Name?: string | null;
Parameters?: {
[key: string]: string | null | undefined;
}
| null;
SerializationLibrary?: string | null;
}

§Properties

§
Name?: string | null
[src]

Name of the SerDe.

§
Parameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

These key-value pairs define initialization parameters for the SerDe.

§
SerializationLibrary?: string | null
[src]

Usually the class that implements the SerDe. An example is org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe.