CfnMonitoringScheduleAlertMixinProps
- class aws_cdk.cfn_property_mixins.aws_sagemaker.CfnMonitoringScheduleAlertMixinProps(*, datapoints_to_alert=None, evaluation_period=None, monitoring_alert_name=None, monitoring_schedule_name=None)
Bases:
objectProperties for CfnMonitoringScheduleAlertPropsMixin.
- Parameters:
datapoints_to_alert (
Union[int,float,None]) – Within EvaluationPeriod, how many execution failures will raise an alert.evaluation_period (
Union[int,float,None]) – The number of most recent monitoring executions to consider when evaluating alert status.monitoring_alert_name (
Optional[str]) – The name of the monitoring alert.monitoring_schedule_name (
Optional[str]) – The name of the monitoring schedule.
- See:
- 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.cfn_property_mixins import aws_sagemaker as sagemaker cfn_monitoring_schedule_alert_mixin_props = sagemaker.CfnMonitoringScheduleAlertMixinProps( 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.
- evaluation_period
The number of most recent monitoring executions to consider when evaluating alert status.
- monitoring_alert_name
The name of the monitoring alert.
- monitoring_schedule_name
The name of the monitoring schedule.