CompositeAlarmProps¶
-
class
aws_cdk.aws_cloudwatch.
CompositeAlarmProps
(*, alarm_rule, actions_enabled=None, alarm_description=None, composite_alarm_name=None)¶ Bases:
object
Properties for creating a Composite Alarm.
- Parameters
alarm_rule (
IAlarmRule
) – Expression that specifies which other alarms are to be evaluated to determine this composite alarm’s state.actions_enabled (
Optional
[bool
]) – Whether the actions for this alarm are enabled. Default: truealarm_description (
Optional
[str
]) – Description for the alarm. Default: No descriptioncomposite_alarm_name (
Optional
[str
]) – Name of the alarm. Default: Automatically generated name
Attributes
-
actions_enabled
¶ Whether the actions for this alarm are enabled.
- Default
true
- Return type
Optional
[bool
]
-
alarm_description
¶ Description for the alarm.
- Default
No description
- Return type
Optional
[str
]
-
alarm_rule
¶ Expression that specifies which other alarms are to be evaluated to determine this composite alarm’s state.
- Return type
-
composite_alarm_name
¶ Name of the alarm.
- Default
Automatically generated name
- Return type
Optional
[str
]