Skip to main content

candidates_for_auto_ml_jobs

Creates, updates, deletes, gets or lists a candidates_for_auto_ml_jobs resource.

Overview

Namecandidates_for_auto_ml_jobs
TypeResource
Idaws.sagemaker.candidates_for_auto_ml_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
candidate_namestringThe name of the candidate.
candidate_propertiesobjectThe properties of an AutoML candidate job.
candidate_statusstringThe candidate's status. (Completed, InProgress, Failed, Stopped, Stopping)
candidate_stepsarrayInformation about the candidate's steps.
creation_timestring (date-time)The creation time.
end_timestring (date-time)The end time.
failure_reasonstringThe failure reason.
final_auto_ml_job_objective_metricobjectThe best candidate result from an AutoML training job.
inference_container_definitionsobjectThe mapping of all supported processing unit (CPU, GPU, etc...) to inference container definitions for the candidate. This field is populated for the AutoML jobs V2 (for example, for jobs created by calling CreateAutoMLJobV2) related to image or text classification problem types only.
inference_containersarrayInformation about the recommended inference container definitions.
last_modified_timestring (date-time)The last modified time.
objective_statusstringThe objective's status. (Succeeded, Pending, Failed)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_candidates_for_auto_ml_jobselectregionList the candidates created for the job.

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

List the candidates created for the job.

SELECT
candidate_name,
candidate_properties,
candidate_status,
candidate_steps,
creation_time,
end_time,
failure_reason,
final_auto_ml_job_objective_metric,
inference_container_definitions,
inference_containers,
last_modified_time,
objective_status
FROM aws.sagemaker.candidates_for_auto_ml_jobs
WHERE region = '{{ region }}' -- required
;