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

LabelSchema

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

The label schema.

interface LabelSchema {
labelMapper: {
[key: string]: string[] | null | undefined;
}
;
unlabeledEventsTreatment?: UnlabeledEventsTreatment | null;
}

§Properties

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

The label mapper maps the Amazon Fraud Detector supported model classification labels (FRAUD, LEGIT) to the appropriate event type labels. For example, if "FRAUD" and "LEGIT" are Amazon Fraud Detector supported labels, this mapper could be: {"FRAUD" => ["0"], "LEGIT" => ["1"]} or {"FRAUD" => ["false"], "LEGIT" => ["true"]} or {"FRAUD" => ["fraud", "abuse"], "LEGIT" => ["legit", "safe"]}. The value part of the mapper is a list, because you may have multiple label variants from your event type for a single Amazon Fraud Detector label.

§
unlabeledEventsTreatment?: UnlabeledEventsTreatment | null
[src]

The action to take for unlabeled events.