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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnListenerRule.RewriteConfigPropertystatic final classAn implementation forCfnListenerRule.RewriteConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRegex
The regular expression to match in the input string.The maximum length of the string is 1,024 characters.
- See Also:
-
getReplace
The replacement string to use when rewriting the matched input.The maximum length of the string is 1,024 characters. You can specify capture groups in the regular expression (for example, $1 and $2).
- See Also:
-
builder
-