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