CfnMonitoringScheduleAlertProps

class aws_cdk.aws_sagemaker.CfnMonitoringScheduleAlertProps(*, datapoints_to_alert, evaluation_period, monitoring_alert_name, monitoring_schedule_name)

Bases: object

Properties for defining a CfnMonitoringScheduleAlert.

Parameters:
  • datapoints_to_alert (Union[int, float]) – Within EvaluationPeriod, how many execution failures will raise an alert.

  • evaluation_period (Union[int, float]) – The number of most recent monitoring executions to consider when evaluating alert status.

  • monitoring_alert_name (str) – The name of the monitoring alert.

  • monitoring_schedule_name (str) – The name of the monitoring schedule.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-monitoringschedulealert.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_sagemaker as sagemaker

cfn_monitoring_schedule_alert_props = sagemaker.CfnMonitoringScheduleAlertProps(
    datapoints_to_alert=123,
    evaluation_period=123,
    monitoring_alert_name="monitoringAlertName",
    monitoring_schedule_name="monitoringScheduleName"
)

Attributes

datapoints_to_alert

Within EvaluationPeriod, how many execution failures will raise an alert.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-monitoringschedulealert.html#cfn-sagemaker-monitoringschedulealert-datapointstoalert

evaluation_period

The number of most recent monitoring executions to consider when evaluating alert status.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-monitoringschedulealert.html#cfn-sagemaker-monitoringschedulealert-evaluationperiod

monitoring_alert_name

The name of the monitoring alert.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-monitoringschedulealert.html#cfn-sagemaker-monitoringschedulealert-monitoringalertname

monitoring_schedule_name

The name of the monitoring schedule.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-monitoringschedulealert.html#cfn-sagemaker-monitoringschedulealert-monitoringschedulename