interface CfnMonitoringScheduleAlertMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnMonitoringScheduleAlertMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnMonitoringScheduleAlertMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnMonitoringScheduleAlertMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnMonitoringScheduleAlertMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnMonitoringScheduleAlertMixinProps |
Properties for CfnMonitoringScheduleAlertPropsMixin.
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/cfn-property-mixins';
const cfnMonitoringScheduleAlertMixinProps: sagemaker.CfnMonitoringScheduleAlertMixinProps = {
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
(optional)
Within EvaluationPeriod, how many execution failures will raise an alert.
evaluationPeriod?
Type:
number
(optional)
The number of most recent monitoring executions to consider when evaluating alert status.
monitoringAlertName?
Type:
string
(optional)
The name of the monitoring alert.
monitoringScheduleName?
Type:
string
(optional)
The name of the monitoring schedule.

.NET
Go
Java
Python
TypeScript