Interface CfnVirtualGateway.VirtualGatewayHealthCheckPolicyProperty

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

@Stability(Stable) public static interface CfnVirtualGateway.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.services.appmesh.*;
 VirtualGatewayHealthCheckPolicyProperty virtualGatewayHealthCheckPolicyProperty = VirtualGatewayHealthCheckPolicyProperty.builder()
         .healthyThreshold(123)
         .intervalMillis(123)
         .protocol("protocol")
         .timeoutMillis(123)
         .unhealthyThreshold(123)
         // the properties below are optional
         .path("path")
         .port(123)
         .build();
 

See Also: