aws.sagemaker.list_monitoring_executions
Example SQL Queries
SELECT * FROMaws.sagemaker.list_monitoring_executions;Description
Returns list of all monitoring job executions.
Table Definition
| Column Name | Column Data Type |
|---|---|
| creation_time_after Input Column A filter that returns only jobs created after a specified time. | TIMESTAMP_S |
| creation_time_before Input Column A filter that returns only jobs created before a specified time. | TIMESTAMP_S |
| endpoint_name Input Column The name of the endpoint used to run the monitoring job. | VARCHAR |
| last_modified_time_after Input Column A filter that returns only jobs modified before a specified time. | TIMESTAMP_S |
| last_modified_time_before Input Column A filter that returns only jobs modified after a specified time. | TIMESTAMP_S |
| monitoring_job_definition_name Input Column The name of the monitoring job. | VARCHAR |
| monitoring_schedule_name Input Column The name of the monitoring schedule. | VARCHAR |
| monitoring_type_equals Input Column A filter that returns only the monitoring job runs of the specified monitoring type. | VARCHAR |
| scheduled_time_after Input Column Filter for jobs scheduled after a specified time. | TIMESTAMP_S |
| scheduled_time_before Input Column Filter for jobs scheduled before a specified time. | TIMESTAMP_S |
| sort_by Input Column Whether to sort the results by the Status, CreationTime, or ScheduledTime field. The default is CreationTime. | VARCHAR |
| sort_order Input Column Whether to sort the results in Ascending or Descending order. The default is Descending. | VARCHAR |
| status_equals Input Column A filter that retrieves only jobs with a specific status. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| creation_time The time at which the monitoring job was created. | TIMESTAMP_S |
| failure_reason Contains the reason a monitoring job failed, if it failed. | VARCHAR |
| last_modified_time A timestamp that indicates the last time the monitoring job was modified. | TIMESTAMP_S |
| monitoring_execution_status The status of the monitoring job. | VARCHAR |
| monitoring_type The type of the monitoring job. | VARCHAR |
| processing_job_arn The Amazon Resource Name (ARN) of the monitoring job. | VARCHAR |
| scheduled_time The time the monitoring job was scheduled. | TIMESTAMP_S |