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

.NET
Go
Java
Python
TypeScript