@Generated(value="jsii-pacmak/1.29.0 (build 41df200)", date="2021-06-02T09:55:48.050Z") @Stability(value=Experimental) public enum HealthCheckType extends Enum<HealthCheckType>
| Enum Constant and Description |
|---|
HTTP
(experimental) Route 53 tries to establish a TCP connection.
|
HTTPS
(experimental) Route 53 tries to establish a TCP connection.
|
TCP
(experimental) Route 53 tries to establish a TCP connection.
|
| Modifier and Type | Method and Description |
|---|---|
static HealthCheckType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HealthCheckType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final HealthCheckType HTTP
If successful, Route 53 submits an HTTP request and waits for an HTTP status code of 200 or greater and less than 400.
@Stability(value=Experimental) public static final HealthCheckType HTTPS
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.
@Stability(value=Experimental) public static final HealthCheckType TCP
If you specify TCP for Type, don't specify a value for ResourcePath.
public static HealthCheckType[] values()
for (HealthCheckType c : HealthCheckType.values()) System.out.println(c);
public static HealthCheckType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.