Skip to main content

inference_executions

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

Overview

Nameinference_executions
TypeResource
Idaws.lookoutequipment.inference_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
inference_execution_summariesarrayProvides 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_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_executionsselectregionLists 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.

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

SELECT examples

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
;