interface HealthCheckConfig
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.AppMesh.HealthCheckConfig | 
  Java | software.amazon.awscdk.services.appmesh.HealthCheckConfig | 
  Python | aws_cdk.aws_appmesh.HealthCheckConfig | 
  TypeScript (source) | @aws-cdk/aws-appmesh » HealthCheckConfig | 
Obtainable from
Health.bind()
All Properties for Health Checks for mesh endpoints.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appmesh from '@aws-cdk/aws-appmesh';
const healthCheckConfig: appmesh.HealthCheckConfig = {
  virtualGatewayHealthCheck: {
    healthyThreshold: 123,
    intervalMillis: 123,
    protocol: 'protocol',
    timeoutMillis: 123,
    unhealthyThreshold: 123,
    // the properties below are optional
    path: 'path',
    port: 123,
  },
  virtualNodeHealthCheck: {
    healthyThreshold: 123,
    intervalMillis: 123,
    protocol: 'protocol',
    timeoutMillis: 123,
    unhealthyThreshold: 123,
    // the properties below are optional
    path: 'path',
    port: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| virtual | Virtual | VirtualGateway CFN configuration for Health Checks. | 
| virtual | Health | VirtualNode CFN configuration for Health Checks. | 
virtualGatewayHealthCheck?
Type:
Virtual
(optional, default: no health checks)
VirtualGateway CFN configuration for Health Checks.
virtualNodeHealthCheck?
Type:
Health
(optional, default: no health checks)
VirtualNode CFN configuration for Health Checks.

 .NET
 Java
 Python
 TypeScript (