inference_events
Creates, updates, deletes, gets or lists an inference_events resource.
Overview
| Name | inference_events |
| Type | Resource |
| Id | aws.lookoutequipment.inference_events |
Fields
The following fields are returned by SELECT queries:
- list_inference_events
| Name | Datatype | Description |
|---|---|---|
inference_event_summaries | array | Provides 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_token | string | An 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_inference_events | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_inference_events
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
;