Interface CfnVirtualGatewayPropsMixin.VirtualGatewayHealthCheckPolicyProperty

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

@Stability(Stable) public static interface CfnVirtualGatewayPropsMixin.VirtualGatewayHealthCheckPolicyProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the health check policy for a virtual gateway'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.*;
 VirtualGatewayHealthCheckPolicyProperty virtualGatewayHealthCheckPolicyProperty = VirtualGatewayHealthCheckPolicyProperty.builder()
         .healthyThreshold(123)
         .intervalMillis(123)
         .path("path")
         .port(123)
         .protocol("protocol")
         .timeoutMillis(123)
         .unhealthyThreshold(123)
         .build();
 

See Also: