CompositeAlarmReference
- class aws_cdk.aws_cloudwatch.CompositeAlarmReference(*, alarm_name, composite_alarm_arn)
Bases:
object
A reference to a CompositeAlarm resource.
- Parameters:
alarm_name (
str
) – The AlarmName of the CompositeAlarm resource.composite_alarm_arn (
str
) – The ARN of the CompositeAlarm resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_cloudwatch as cloudwatch composite_alarm_reference = cloudwatch.CompositeAlarmReference( alarm_name="alarmName", composite_alarm_arn="compositeAlarmArn" )
Attributes
- alarm_name
The AlarmName of the CompositeAlarm resource.
- composite_alarm_arn
The ARN of the CompositeAlarm resource.