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

InferenceEventSummary

import type { InferenceEventSummary } from "https://aws-api.deno.dev/v0.4/services/lookoutequipment.ts?docs=full";

Contains information about the specific inference event, including start and end time, diagnostics information, event duration and so on.

interface InferenceEventSummary {
Diagnostics?: string | null;
EventDurationInSeconds?: number | null;
EventEndTime?: Date | number | null;
EventStartTime?: Date | number | null;
InferenceSchedulerArn?: string | null;
InferenceSchedulerName?: string | null;
}

§Properties

§
Diagnostics?: string | null
[src]

An array which specifies the names and values of all sensors contributing to an inference event.

§
EventDurationInSeconds?: number | null
[src]

Indicates the size of an inference event in seconds.

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

Indicates the ending time of an inference event.

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

Indicates the starting time of an inference event.

§
InferenceSchedulerArn?: string | null
[src]

The Amazon Resource Name (ARN) of the inference scheduler being used for the inference event.

§
InferenceSchedulerName?: string | null
[src]

The name of the inference scheduler being used for the inference events.