@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.539Z") @Stability(value=Stable) public interface HealthCheckConfig extends software.amazon.jsii.JsiiSerializable
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.
|
@Stability(value=Stable) @Nullable default CfnVirtualGateway.VirtualGatewayHealthCheckPolicyProperty getVirtualGatewayHealthCheck()
Default: - no health checks
@Stability(value=Stable) @Nullable default CfnVirtualNode.HealthCheckProperty getVirtualNodeHealthCheck()
Default: - no health checks
@Stability(value=Stable) static HealthCheckConfig.Builder builder()
HealthCheckConfig.Builder of HealthCheckConfigCopyright © 2022. All rights reserved.