Module: AWSCDK::Route53::HealthCheckType

Defined in:
route53/health_check_type.rb

Overview

The type of health check to be associated with the record.

Constant Summary collapse

HTTP =
Deprecated.
Note:

Default:

HTTP health check.

Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and waits for an HTTP status code of 200 or greater and less than 400.

Jsii::Enum.new("aws-cdk-lib.aws_route53.HealthCheckType", "HTTP")
HTTPS =
Deprecated.
Note:

Default:

HTTPS health check.

Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTPS request and waits for an HTTP status code of 200 or greater and less than 400.

Jsii::Enum.new("aws-cdk-lib.aws_route53.HealthCheckType", "HTTPS")
HTTP_STR_MATCH =
Deprecated.
Note:

Default:

HTTP health check with string matching.

Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and searches the first 5,120 bytes of the response body for the string that you specify in SearchString.

Jsii::Enum.new("aws-cdk-lib.aws_route53.HealthCheckType", "HTTP_STR_MATCH")
HTTPS_STR_MATCH =
Deprecated.
Note:

Default:

HTTPS health check with string matching.

Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTPS request and searches the first 5,120 bytes of the response body for the string that you specify in SearchString.

Jsii::Enum.new("aws-cdk-lib.aws_route53.HealthCheckType", "HTTPS_STR_MATCH")
TCP =
Deprecated.
Note:

Default:

TCP health check.

Route 53 tries to establish a TCP connection.

Jsii::Enum.new("aws-cdk-lib.aws_route53.HealthCheckType", "TCP")
CLOUDWATCH_METRIC =
Deprecated.
Note:

Default:

CloudWatch metric health check.

The health check is associated with a CloudWatch alarm. If the state of the alarm is OK, the health check is considered healthy. If the state is ALARM, the health check is considered unhealthy. If CloudWatch doesn't have sufficient data to determine whether the state is OK or ALARM, the health check status depends on the setting for InsufficientDataHealthStatus: Healthy, Unhealthy, or LastKnownStatus.

Jsii::Enum.new("aws-cdk-lib.aws_route53.HealthCheckType", "CLOUDWATCH_METRIC")
CALCULATED =
Deprecated.
Note:

Default:

Calculated health check.

For health checks that monitor the status of other health checks, Route 53 adds up the number of health checks that Route 53 health checkers consider to be healthy and compares that number with the value of HealthThreshold.

Jsii::Enum.new("aws-cdk-lib.aws_route53.HealthCheckType", "CALCULATED")
RECOVERY_CONTROL =
Deprecated.
Note:

Default:

Recovery control health check.

The health check is associated with a Route53 Application Recovery Controller routing control. If the routing control state is ON, the health check is considered healthy. If the state is OFF, the health check is considered unhealthy.

Jsii::Enum.new("aws-cdk-lib.aws_route53.HealthCheckType", "RECOVERY_CONTROL")