interface RuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudWatch.CfnAlarmMuteRule.RuleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch#CfnAlarmMuteRule_RuleProperty |
Java | software.amazon.awscdk.services.cloudwatch.CfnAlarmMuteRule.RuleProperty |
Python | aws_cdk.aws_cloudwatch.CfnAlarmMuteRule.RuleProperty |
TypeScript | aws-cdk-lib » aws_cloudwatch » CfnAlarmMuteRule » RuleProperty |
The rule for the mute.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudwatch as cloudwatch } from 'aws-cdk-lib';
const ruleProperty: cloudwatch.CfnAlarmMuteRule.RuleProperty = {
schedule: {
duration: 'duration',
expression: 'expression',
// the properties below are optional
timezone: 'timezone',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| schedule | IResolvable | Schedule | Schedule for the mute to be active. |
schedule
Type:
IResolvable | Schedule
Schedule for the mute to be active.

.NET
Go
Java
Python
TypeScript