interface RuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Mixins.CfnAlarmMuteRulePropsMixin.RuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudwatch/mixins#CfnAlarmMuteRulePropsMixin_RuleProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudwatch.mixins.CfnAlarmMuteRulePropsMixin.RuleProperty |
Python | aws_cdk.mixins_preview.aws_cloudwatch.mixins.CfnAlarmMuteRulePropsMixin.RuleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudwatch » mixins » CfnAlarmMuteRulePropsMixin » 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 { mixins as cloudwatch_mixins } from '@aws-cdk/mixins-preview/aws-cloudwatch';
const ruleProperty: cloudwatch_mixins.CfnAlarmMuteRulePropsMixin.RuleProperty = {
schedule: {
duration: 'duration',
expression: 'expression',
timezone: 'timezone',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| schedule? | IResolvable | Schedule | Schedule for the mute to be active. |
schedule?
Type:
IResolvable | Schedule
(optional)
Schedule for the mute to be active.

.NET
Go
Java
Python
TypeScript