Interface CfnVirtualNode.HealthCheckProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNode.HealthCheckProperty.Jsii$Proxy
- Enclosing class:
- CfnVirtualNode
@Stability(Stable)
public static interface CfnVirtualNode.HealthCheckProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents the health check policy for a virtual node's listener.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.appmesh.*; HealthCheckProperty healthCheckProperty = HealthCheckProperty.builder() .healthyThreshold(123) .intervalMillis(123) .protocol("protocol") .timeoutMillis(123) .unhealthyThreshold(123) // the properties below are optional .path("path") .port(123) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVirtualNode.HealthCheckProperty
static final class
An implementation forCfnVirtualNode.HealthCheckProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The number of consecutive successful health checks that must occur before declaring listener healthy.The time period in milliseconds between each health check execution.default String
getPath()
The destination path for the health check request.default Number
getPort()
The destination port for the health check request.The protocol for the health check request.The amount of time to wait when receiving a response from the health check, in milliseconds.The number of consecutive failed health checks that must occur before declaring a virtual node unhealthy.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHealthyThreshold
The number of consecutive successful health checks that must occur before declaring listener healthy. -
getIntervalMillis
The time period in milliseconds between each health check execution. -
getProtocol
The protocol for the health check request.If you specify
grpc
, then your service must conform to the GRPC Health Checking Protocol . -
getTimeoutMillis
The amount of time to wait when receiving a response from the health check, in milliseconds. -
getUnhealthyThreshold
The number of consecutive failed health checks that must occur before declaring a virtual node unhealthy. -
getPath
The destination path for the health check request.This value is only used if the specified protocol is HTTP or HTTP/2. For any other protocol, this value is ignored.
-
getPort
The destination port for the health check request.This port must match the port defined in the
PortMapping
for the listener. -
builder
-