Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeMonitoringScheduleResponse

import type { DescribeMonitoringScheduleResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeMonitoringScheduleResponse {
CreationTime: Date | number;
EndpointName?: string | null;
FailureReason?: string | null;
LastModifiedTime: Date | number;
LastMonitoringExecutionSummary?: MonitoringExecutionSummary | null;
MonitoringScheduleArn: string;
MonitoringScheduleConfig: MonitoringScheduleConfig;
MonitoringScheduleName: string;
MonitoringScheduleStatus: ScheduleStatus;
MonitoringType?: MonitoringType | null;
}

§Properties

§
CreationTime: Date | number
[src]

The time at which the monitoring job was created.

§
EndpointName?: string | null
[src]

The name of the endpoint for the monitoring job.

§
FailureReason?: string | null
[src]

A string, up to one KB in size, that contains the reason a monitoring job failed, if it failed.

§
LastModifiedTime: Date | number
[src]

The time at which the monitoring job was last modified.

§
LastMonitoringExecutionSummary?: MonitoringExecutionSummary | null
[src]

Describes metadata on the last execution to run, if there was one.

§
MonitoringScheduleArn: string
[src]

The Amazon Resource Name (ARN) of the monitoring schedule.

§
MonitoringScheduleConfig: MonitoringScheduleConfig
[src]

The configuration object that specifies the monitoring schedule and defines the monitoring job.

§
MonitoringScheduleName: string
[src]

Name of the monitoring schedule.

§
MonitoringScheduleStatus: ScheduleStatus
[src]

The status of an monitoring job.

§
MonitoringType?: MonitoringType | null
[src]

The type of the monitoring job that this schedule runs. This is one of the following values.

  • DATA_QUALITY - The schedule is for a data quality monitoring job.
  • MODEL_QUALITY - The schedule is for a model quality monitoring job.
  • MODEL_BIAS - The schedule is for a bias monitoring job.
  • MODEL_EXPLAINABILITY - The schedule is for an explainability monitoring job.