monitoring_executions
Creates, updates, deletes, gets or lists a monitoring_executions resource.
Overview
| Name | monitoring_executions |
| Type | Resource |
| Id | aws.sagemaker.monitoring_executions |
Fields
The following fields are returned by SELECT queries:
- list_monitoring_executions
| Name | Datatype | Description |
|---|---|---|
creation_time | string (date-time) | The time at which the monitoring job was created. |
endpoint_name | string | The name of the endpoint used to run the monitoring job. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>) |
failure_reason | string | Contains the reason a monitoring job failed, if it failed. |
last_modified_time | string (date-time) | A timestamp that indicates the last time the monitoring job was modified. |
monitoring_execution_status | string | The status of the monitoring job. (Pending, Completed, CompletedWithViolations, InProgress, Failed, Stopping, Stopped) |
monitoring_job_definition_name | string | The name of the monitoring job. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>) |
monitoring_schedule_name | string | The name of the monitoring schedule. (pattern: <code>[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}</code>) |
monitoring_type | string | The type of the monitoring job. (DataQuality, ModelQuality, ModelBias, ModelExplainability) |
processing_job_arn | string | The 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_time | string (date-time) | The time the monitoring job was scheduled. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_monitoring_executions | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_monitoring_executions
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
;