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

GrokClassifier

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

A classifier that uses grok patterns.

interface GrokClassifier {
Classification: string;
CreationTime?: Date | number | null;
CustomPatterns?: string | null;
GrokPattern: string;
LastUpdated?: Date | number | null;
Name: string;
Version?: number | null;
}

§Properties

§
Classification: string
[src]

An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, and so on.

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

The time that this classifier was registered.

§
CustomPatterns?: string | null
[src]

Optional custom grok patterns defined by this classifier. For more information, see custom patterns in Writing Custom Classifiers.

§
GrokPattern: string
[src]

The grok pattern applied to a data store by this classifier. For more information, see built-in patterns in Writing 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.