Class: Aws::CloudWatch::Types::Rule
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::Rule
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb
Overview
Defines the schedule configuration for an alarm mute rule.
The rule contains a schedule that specifies when and how long alarms should be muted. The schedule can be a recurring pattern using cron expressions or a one-time mute window using at expressions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#schedule ⇒ Types::Schedule
The schedule configuration that defines when the mute rule activates and how long it remains active.
Instance Attribute Details
#schedule ⇒ Types::Schedule
The schedule configuration that defines when the mute rule activates and how long it remains active.
4853 4854 4855 4856 4857 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 4853 class Rule < Struct.new( :schedule) SENSITIVE = [] include Aws::Structure end |