CfnHealthCheckProps

class aws_cdk.aws_route53.CfnHealthCheckProps(*, health_check_config, health_check_tags=None)

Bases: object

Properties for defining a CfnHealthCheck.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html

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

cfn_health_check_props = route53.CfnHealthCheckProps(
    health_check_config=route53.CfnHealthCheck.HealthCheckConfigProperty(
        type="type",

        # the properties below are optional
        alarm_identifier=route53.CfnHealthCheck.AlarmIdentifierProperty(
            name="name",
            region="region"
        ),
        child_health_checks=["childHealthChecks"],
        enable_sni=False,
        failure_threshold=123,
        fully_qualified_domain_name="fullyQualifiedDomainName",
        health_threshold=123,
        insufficient_data_health_status="insufficientDataHealthStatus",
        inverted=False,
        ip_address="ipAddress",
        measure_latency=False,
        port=123,
        regions=["regions"],
        request_interval=123,
        resource_path="resourcePath",
        routing_control_arn="routingControlArn",
        search_string="searchString"
    ),

    # the properties below are optional
    health_check_tags=[route53.CfnHealthCheck.HealthCheckTagProperty(
        key="key",
        value="value"
    )]
)

Attributes

health_check_config

A complex type that contains detailed information about one health check.

For the values to enter for HealthCheckConfig , see HealthCheckConfig

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html#cfn-route53-healthcheck-healthcheckconfig

health_check_tags

The HealthCheckTags property describes key-value pairs that are associated with an AWS::Route53::HealthCheck resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-healthcheck.html#cfn-route53-healthcheck-healthchecktags