Interface CfnListenerRule.SourceIpConfigProperty

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

@Stability(Stable) public static interface CfnListenerRule.SourceIpConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about a source IP condition.

You can use this condition to route based on the IP address of the source that connects to the load balancer. If a client is behind a proxy, this is the IP address of the proxy not the IP address of the client.

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.elasticloadbalancingv2.*;
 SourceIpConfigProperty sourceIpConfigProperty = SourceIpConfigProperty.builder()
         .values(List.of("values"))
         .build();