interface HealthCheckConfig
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppMesh.HealthCheckConfig |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#HealthCheckConfig |
![]() | software.amazon.awscdk.services.appmesh.HealthCheckConfig |
![]() | aws_cdk.aws_appmesh.HealthCheckConfig |
![]() | aws-cdk-lib » 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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
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.