HealthCheckReference

class aws_cdk.aws_route53.HealthCheckReference(*, health_check_id)

Bases: object

A reference to a HealthCheck resource.

Parameters:

health_check_id (str) – The HealthCheckId of the HealthCheck 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_route53 as route53

health_check_reference = route53.HealthCheckReference(
    health_check_id="healthCheckId"
)

Attributes

health_check_id

The HealthCheckId of the HealthCheck resource.