Class: Aws::CloudWatch::Types::MuteTargets
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::MuteTargets
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb
Overview
Specifies which alarms an alarm mute rule applies to.
You can target up to 100 specific alarms by name. When a mute rule is active, the targeted alarms continue to evaluate metrics and transition between states, but their configured actions are muted.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#alarm_names ⇒ Array<String>
The list of alarm names that this mute rule targets.
Instance Attribute Details
#alarm_names ⇒ Array<String>
The list of alarm names that this mute rule targets. You can specify up to 100 alarm names.
Each alarm name must be between 1 and 255 characters in length. The alarm names must match existing alarms in your Amazon Web Services account and region.
3538 3539 3540 3541 3542 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 3538 class MuteTargets < Struct.new( :alarm_names) SENSITIVE = [] include Aws::Structure end |