inference_executions
Creates, updates, deletes, gets or lists an inference_executions resource.
Overview
| Name | inference_executions |
| Type | Resource |
| Id | aws.lookoutequipment.inference_executions |
Fields
The following fields are returned by SELECT queries:
- list_inference_executions
| Name | Datatype | Description |
|---|---|---|
inference_execution_summaries | array | Provides an array of information about the individual inference executions returned from the ListInferenceExecutions operation, including model used, inference scheduler, data configuration, and so on. If you don't supply the InferenceSchedulerName request parameter, or if you supply the name of an inference scheduler that doesn't exist, ListInferenceExecutions returns an empty array in InferenceExecutionSummaries. |
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_executions | select | region | Lists all inference executions that have been performed by 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_executions
Lists all inference executions that have been performed by the specified inference scheduler.
SELECT
inference_execution_summaries,
next_token
FROM aws.lookoutequipment.inference_executions
WHERE region = '{{ region }}' -- required
;