Interface CfnVirtualNodePropsMixin.HealthCheckProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVirtualNodePropsMixin.HealthCheckProperty.Jsii$Proxy
Enclosing class:
CfnVirtualNodePropsMixin

@Stability(Stable) public static interface CfnVirtualNodePropsMixin.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.cfnpropertymixins.services.appmesh.*;
 HealthCheckProperty healthCheckProperty = HealthCheckProperty.builder()
         .healthyThreshold(123)
         .intervalMillis(123)
         .path("path")
         .port(123)
         .protocol("protocol")
         .timeoutMillis(123)
         .unhealthyThreshold(123)
         .build();
 

See Also: