Module: AWSCDK::ServiceDiscovery::HealthCheckType

Defined in:
service_discovery/health_check_type.rb

Constant Summary collapse

HTTP =
Deprecated.
Note:

Default:

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_servicediscovery.HealthCheckType", "HTTP")
HTTPS =
Deprecated.
Note:

Default:

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. If you specify HTTPS for the value of Type, the endpoint must support TLS v1.0 or later.

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

Default:

Route 53 tries to establish a TCP connection.

If you specify TCP for Type, don't specify a value for ResourcePath.

Jsii::Enum.new("aws-cdk-lib.aws_servicediscovery.HealthCheckType", "TCP")