Interface CfnListenerRule.TransformProperty

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

@Stability(Stable) public static interface CfnListenerRule.TransformProperty 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.elasticloadbalancingv2.*;
 TransformProperty transformProperty = TransformProperty.builder()
         .type("type")
         // the properties below are optional
         .hostHeaderRewriteConfig(RewriteConfigObjectProperty.builder()
                 .rewrites(List.of(RewriteConfigProperty.builder()
                         .regex("regex")
                         .replace("replace")
                         .build()))
                 .build())
         .urlRewriteConfig(RewriteConfigObjectProperty.builder()
                 .rewrites(List.of(RewriteConfigProperty.builder()
                         .regex("regex")
                         .replace("replace")
                         .build()))
                 .build())
         .build();
 

See Also: