LogAlarmReference
- class aws_cdk.interfaces.aws_cloudwatch.LogAlarmReference(*, alarm_name, log_alarm_arn)
Bases:
objectA reference to a LogAlarm resource.
- Parameters:
alarm_name (
str) – The AlarmName of the LogAlarm resource.log_alarm_arn (
str) – The ARN of the LogAlarm 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.interfaces import aws_cloudwatch as interfaces_cloudwatch log_alarm_reference = interfaces_cloudwatch.LogAlarmReference( alarm_name="alarmName", log_alarm_arn="logAlarmArn" )
Attributes
- alarm_name
The AlarmName of the LogAlarm resource.
- log_alarm_arn
The ARN of the LogAlarm resource.