interface RuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudWatch.CfnAlarmMuteRulePropsMixin.RuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudwatch#CfnAlarmMuteRulePropsMixin_RuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudwatch.CfnAlarmMuteRulePropsMixin.RuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudwatch.CfnAlarmMuteRulePropsMixin.RuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudwatch » 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 { aws_cloudwatch as cloudwatch } from '@aws-cdk/cfn-property-mixins';
const ruleProperty: cloudwatch.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