Skip to main content

inference_events

Creates, updates, deletes, gets or lists an inference_events resource.

Overview

Nameinference_events
TypeResource
Idaws.lookoutequipment.inference_events

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
inference_event_summariesarrayProvides an array of information about the individual inference events returned from the ListInferenceEvents operation, including scheduler used, event start time, event end time, diagnostics, and so on.
next_tokenstringAn opaque pagination token indicating where to continue the listing of inference executions. (pattern: <code>\p{ASCII}{0,8192}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_inference_eventsselectregionLists all inference events that have been found for the specified inference scheduler.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists all inference events that have been found for the specified inference scheduler.

SELECT
inference_event_summaries,
next_token
FROM aws.lookoutequipment.inference_events
WHERE region = '{{ region }}' -- required
;