@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-14T16:25:34.347Z")
public interface HealthCheckConfig
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.*; HealthCheckConfig healthCheckConfig = HealthCheckConfig.builder() .virtualGatewayHealthCheck(VirtualGatewayHealthCheckPolicyProperty.builder() .healthyThreshold(123) .intervalMillis(123) .protocol("protocol") .timeoutMillis(123) .unhealthyThreshold(123) // the properties below are optional .path("path") .port(123) .build()) .virtualNodeHealthCheck(HealthCheckProperty.builder() .healthyThreshold(123) .intervalMillis(123) .protocol("protocol") .timeoutMillis(123) .unhealthyThreshold(123) // the properties below are optional .path("path") .port(123) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
HealthCheckConfig.Builder
A builder for
HealthCheckConfig |
static class |
HealthCheckConfig.Jsii$Proxy
An implementation for
HealthCheckConfig |
Modifier and Type | Method and Description |
---|---|
static HealthCheckConfig.Builder |
builder() |
default CfnVirtualGateway.VirtualGatewayHealthCheckPolicyProperty |
getVirtualGatewayHealthCheck()
VirtualGateway CFN configuration for Health Checks.
|
default CfnVirtualNode.HealthCheckProperty |
getVirtualNodeHealthCheck()
VirtualNode CFN configuration for Health Checks.
|
default CfnVirtualGateway.VirtualGatewayHealthCheckPolicyProperty getVirtualGatewayHealthCheck()
Default: - no health checks
default CfnVirtualNode.HealthCheckProperty getVirtualNodeHealthCheck()
Default: - no health checks
static HealthCheckConfig.Builder builder()
HealthCheckConfig.Builder
of HealthCheckConfig