interface CfnAlarmMuteRuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Mixins.CfnAlarmMuteRuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudwatch/mixins#CfnAlarmMuteRuleMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudwatch.mixins.CfnAlarmMuteRuleMixinProps |
Python | aws_cdk.mixins_preview.aws_cloudwatch.mixins.CfnAlarmMuteRuleMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_cloudwatch » mixins » 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 { mixins as cloudwatch_mixins } from '@aws-cdk/mixins-preview/aws-cloudwatch';
const cfnAlarmMuteRuleMixinProps: cloudwatch_mixins.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