Interface CfnListenerRule.RewriteConfigProperty

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

@Stability(Stable) public static interface CfnListenerRule.RewriteConfigProperty extends software.amazon.jsii.JsiiSerializable
Information about a rewrite transform.

This transform matches a pattern and replaces it with the specified string.

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.*;
 RewriteConfigProperty rewriteConfigProperty = RewriteConfigProperty.builder()
         .regex("regex")
         .replace("replace")
         .build();
 

See Also: