AlarmIdentifier
- class aws_cdk.aws_route53.AlarmIdentifier(*, name, region)
Bases:
object
A CloudWatch alarm that you want Amazon Route 53 health checker to use to determine whether this health check is healthy.
- Parameters:
name (
str
) – The name of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.region (
str
) – The region of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.
- 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_route53 as route53 alarm_identifier = route53.AlarmIdentifier( name="name", region="region" )
Attributes
- name
The name of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.
- region
The region of the CloudWatch alarm that you want Amazon Route 53 health checkers to use to determine whether this health check is healthy.