Interface CfnListenerRule.PathPatternConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnListenerRule.PathPatternConfigProperty.Jsii$Proxy
- Enclosing class:
CfnListenerRule
@Stability(Stable)
public static interface CfnListenerRule.PathPatternConfigProperty
extends software.amazon.jsii.JsiiSerializable
Information about a path pattern condition.
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.*; PathPatternConfigProperty pathPatternConfigProperty = PathPatternConfigProperty.builder() .values(List.of("values")) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnListenerRule.PathPatternConfigProperty
static final class
An implementation forCfnListenerRule.PathPatternConfigProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The path patterns to compare against the request URL.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getValues
The path patterns to compare against the request URL.The maximum size of each string is 128 characters. The comparison is case sensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
If you specify multiple strings, the condition is satisfied if one of them matches the request URL. The path pattern is compared only to the path of the URL, not to its query string.
- See Also:
-
builder
-