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

SendEventRequest

import type { SendEventRequest } from "https://aws-api.deno.dev/v0.3/services/frauddetector.ts?docs=full";
interface SendEventRequest {
assignedLabel?: string | null;
entities: Entity[];
eventId: string;
eventTimestamp: string;
eventTypeName: string;
eventVariables: {
[key: string]: string | null | undefined;
}
;
labelTimestamp?: string | null;
}

§Properties

§
assignedLabel?: string | null
[src]

The label to associate with the event. Required if specifying labelTimestamp.

§
entities: Entity[]
[src]

An array of entities.

§
eventId: string
[src]

The event ID to upload.

§
eventTimestamp: string
[src]

The timestamp that defines when the event under evaluation occurred. The timestamp must be specified using ISO 8601 standard in UTC.

§
eventTypeName: string
[src]

The event type name of the event.

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

Names of the event type's variables you defined in Amazon Fraud Detector to represent data elements and their corresponding values for the event you are sending for evaluation.

§
labelTimestamp?: string | null
[src]

The timestamp associated with the label. Required if specifying assignedLabel.