Interface CfnRoutingRule.MatchHeaderValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRoutingRule.MatchHeaderValueProperty.Jsii$Proxy
- Enclosing class:
CfnRoutingRule
@Stability(Stable)
public static interface CfnRoutingRule.MatchHeaderValueProperty
extends software.amazon.jsii.JsiiSerializable
Represents a
MatchHeaderValue
.
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.apigatewayv2.*; MatchHeaderValueProperty matchHeaderValueProperty = MatchHeaderValueProperty.builder() .header("header") .valueGlob("valueGlob") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnRoutingRule.MatchHeaderValueProperty
static final class
An implementation forCfnRoutingRule.MatchHeaderValueProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The case insensitive header name to be matched.The case sensitive header glob value to be matched against entire header value.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHeader
The case insensitive header name to be matched.The header name must be less than 40 characters and the only allowed characters are
a-z
,A-Z
,0-9
, and the following special characters:*?-!#$%&'.^_
|~.` .- See Also:
-
getValueGlob
The case sensitive header glob value to be matched against entire header value.The header glob value must be less than 128 characters and the only allowed characters are
a-z
,A-Z
,0-9
, and the following special characters:*?-!#$%&'.^_
|~. Wildcard matching is supported for header glob values but must be for
prefix-match,
suffix-match, or
infix-match` .- See Also:
-
builder
-