interface CfnMonitoringScheduleAlertProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnMonitoringScheduleAlertProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnMonitoringScheduleAlertProps |
Java | software.amazon.awscdk.services.sagemaker.CfnMonitoringScheduleAlertProps |
Python | aws_cdk.aws_sagemaker.CfnMonitoringScheduleAlertProps |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnMonitoringScheduleAlertProps |
Properties for defining a CfnMonitoringScheduleAlert.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const cfnMonitoringScheduleAlertProps: sagemaker.CfnMonitoringScheduleAlertProps = {
datapointsToAlert: 123,
evaluationPeriod: 123,
monitoringAlertName: 'monitoringAlertName',
monitoringScheduleName: 'monitoringScheduleName',
};
Properties
| Name | Type | Description |
|---|---|---|
| datapoints | number | Within EvaluationPeriod, how many execution failures will raise an alert. |
| evaluation | number | The number of most recent monitoring executions to consider when evaluating alert status. |
| monitoring | string | The name of the monitoring alert. |
| monitoring | string | The name of the monitoring schedule. |
datapointsToAlert
Type:
number
Within EvaluationPeriod, how many execution failures will raise an alert.
evaluationPeriod
Type:
number
The number of most recent monitoring executions to consider when evaluating alert status.
monitoringAlertName
Type:
string
The name of the monitoring alert.
monitoringScheduleName
Type:
string
The name of the monitoring schedule.

.NET
Go
Java
Python
TypeScript