@Stability(value=Stable)
public static interface CfnListenerRule.PathPatternConfigProperty
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.*;
PathPatternConfigProperty pathPatternConfigProperty = PathPatternConfigProperty.builder()
.values(List.of("values"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnListenerRule.PathPatternConfigProperty.Builder
A builder for
CfnListenerRule.PathPatternConfigProperty |
static class |
CfnListenerRule.PathPatternConfigProperty.Jsii$Proxy
An implementation for
CfnListenerRule.PathPatternConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnListenerRule.PathPatternConfigProperty.Builder |
builder() |
default List<String> |
getValues()
The path patterns to compare against the request URL.
|
@Stability(value=Stable) @Nullable default List<String> getValues()
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.
@Stability(value=Stable) static CfnListenerRule.PathPatternConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.