interface CfnAlarmMuteRuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudWatch.CfnAlarmMuteRuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudwatch#CfnAlarmMuteRuleMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudwatch.CfnAlarmMuteRuleMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudwatch.CfnAlarmMuteRuleMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudwatch » CfnAlarmMuteRuleMixinProps |
Properties for CfnAlarmMuteRulePropsMixin.
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 cfnAlarmMuteRuleMixinProps: cloudwatch.CfnAlarmMuteRuleMixinProps = {
description: 'description',
expireDate: 'expireDate',
muteTargets: {
alarmNames: ['alarmNames'],
},
name: 'name',
rule: {
schedule: {
duration: 'duration',
expression: 'expression',
timezone: 'timezone',
},
},
startDate: 'startDate',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the AlarmMuteRule. |
| expire | string | The date, with the same timezone offset as "ScheduleTimezone" after which the alarm mute rule will be expired. |
| mute | IResolvable | Mute | Targets to be muted. |
| name? | string | The name of the AlarmMuteRule. |
| rule? | IResolvable | Rule | The rule for the mute. |
| start | string | The date, with the same timezone offset as "ScheduleTimezone", after which the alarm mute rule will become active. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
The description of the AlarmMuteRule.
expireDate?
Type:
string
(optional)
The date, with the same timezone offset as "ScheduleTimezone" after which the alarm mute rule will be expired.
muteTargets?
Type:
IResolvable | Mute
(optional)
Targets to be muted.
name?
Type:
string
(optional)
The name of the AlarmMuteRule.
rule?
Type:
IResolvable | Rule
(optional)
The rule for the mute.
startDate?
Type:
string
(optional)
The date, with the same timezone offset as "ScheduleTimezone", after which the alarm mute rule will become active.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript