interface ScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudWatch.CfnAlarmMuteRule.ScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudwatch#CfnAlarmMuteRule_ScheduleProperty |
Java | software.amazon.awscdk.services.cloudwatch.CfnAlarmMuteRule.ScheduleProperty |
Python | aws_cdk.aws_cloudwatch.CfnAlarmMuteRule.ScheduleProperty |
TypeScript | aws-cdk-lib » aws_cloudwatch » CfnAlarmMuteRule » 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 { aws_cloudwatch as cloudwatch } from 'aws-cdk-lib';
const scheduleProperty: cloudwatch.CfnAlarmMuteRule.ScheduleProperty = {
duration: 'duration',
expression: 'expression',
// the properties below are optional
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
The duration of the schedule when it triggers.
expression
Type:
string
The expression of the schedule.
timezone?
Type:
string
(optional)
The timezone of the schedule.

.NET
Go
Java
Python
TypeScript