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

JsonClassifier

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

A classifier for JSON content.

interface JsonClassifier {
CreationTime?: Date | number | null;
JsonPath: string;
LastUpdated?: Date | number | null;
Name: string;
Version?: number | null;
}

§Properties

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

The time that this classifier was registered.

§
JsonPath: string
[src]

A JsonPath string defining the JSON data for the classifier to classify. Glue supports a subset of JsonPath, as described in Writing JsonPath Custom Classifiers.

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

The time that this classifier was last updated.

§
Name: string
[src]

The name of the classifier.

§
Version?: number | null
[src]

The version of this classifier.