Skip to main content

monitoring_executions

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

Overview

Namemonitoring_executions
TypeResource
Idaws.sagemaker.monitoring_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
creation_timestring (date-time)The time at which the monitoring job was created.
endpoint_namestringThe name of the endpoint used to run the monitoring job. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>)
failure_reasonstringContains the reason a monitoring job failed, if it failed.
last_modified_timestring (date-time)A timestamp that indicates the last time the monitoring job was modified.
monitoring_execution_statusstringThe status of the monitoring job. (Pending, Completed, CompletedWithViolations, InProgress, Failed, Stopping, Stopped)
monitoring_job_definition_namestringThe name of the monitoring job. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>)
monitoring_schedule_namestringThe name of the monitoring schedule. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>)
monitoring_typestringThe type of the monitoring job. (DataQuality, ModelQuality, ModelBias, ModelExplainability)
processing_job_arnstringThe Amazon Resource Name (ARN) of the monitoring job. (pattern: <code>arn:aws[a-z-]:sagemaker:[a-z0-9-]:[0-9]{12}:processing-job/[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>)
scheduled_timestring (date-time)The time the monitoring job was scheduled.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_monitoring_executionsselectregionReturns list of all monitoring job executions.

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 list of all monitoring job executions.

SELECT
creation_time,
endpoint_name,
failure_reason,
last_modified_time,
monitoring_execution_status,
monitoring_job_definition_name,
monitoring_schedule_name,
monitoring_type,
processing_job_arn,
scheduled_time
FROM aws.sagemaker.monitoring_executions
WHERE region = '{{ region }}' -- required
;