Interface CfnResponderGateway.HealthCheckConfigProperty

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

@Stability(Stable) public static interface CfnResponderGateway.HealthCheckConfigProperty extends software.amazon.jsii.JsiiSerializable
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.rtbfabric.*;
 HealthCheckConfigProperty healthCheckConfigProperty = HealthCheckConfigProperty.builder()
         .path("path")
         .port(123)
         // the properties below are optional
         .healthyThresholdCount(123)
         .intervalSeconds(123)
         .protocol("protocol")
         .statusCodeMatcher("statusCodeMatcher")
         .timeoutMs(123)
         .unhealthyThresholdCount(123)
         .build();
 

See Also: