Skip to main content

inference_recommendations_job_steps

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

Overview

Nameinference_recommendations_job_steps
TypeResource
Idaws.sagemaker.inference_recommendations_job_steps

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
inference_benchmarkobjectThe details for a specific benchmark.
job_namestringThe name of the Inference Recommender job. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,63}</code>)
statusstringThe current status of the benchmark. (PENDING, IN_PROGRESS, COMPLETED, FAILED, STOPPING, STOPPED, DELETING, DELETED)
step_typestringThe type of the subtask. BENCHMARK: Evaluate the performance of your model on different instance types. (BENCHMARK)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_inference_recommendations_job_stepsselectregionReturns a list of the subtasks for an Inference Recommender job. The supported subtasks are benchmarks, which evaluate the performance of your model on different instance types.

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

Returns a list of the subtasks for an Inference Recommender job. The supported subtasks are benchmarks, which evaluate the performance of your model on different instance types.

SELECT
inference_benchmark,
job_name,
status,
step_type
FROM aws.sagemaker.inference_recommendations_job_steps
WHERE region = '{{ region }}' -- required
;