Interface CfnLoadBalancer.ConnectionDrainingPolicyProperty

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

@Stability(Stable) public static interface CfnLoadBalancer.ConnectionDrainingPolicyProperty extends software.amazon.jsii.JsiiSerializable
Specifies the connection draining settings for your Classic Load Balancer.

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.elasticloadbalancing.*;
 ConnectionDrainingPolicyProperty connectionDrainingPolicyProperty = ConnectionDrainingPolicyProperty.builder()
         .enabled(false)
         // the properties below are optional
         .timeout(123)
         .build();