@Generated(value="jsii-pacmak/1.70.0 (build 03c2f6f)", date="2022-11-01T13:16:42.375Z") @Stability(value=Experimental) public interface HeaderMatchConfig 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.appmesh.*;
HeaderMatchConfig headerMatchConfig = HeaderMatchConfig.builder()
.headerMatch(HttpRouteHeaderProperty.builder()
.name("name")
// the properties below are optional
.invert(false)
.match(HeaderMatchMethodProperty.builder()
.exact("exact")
.prefix("prefix")
.range(MatchRangeProperty.builder()
.end(123)
.start(123)
.build())
.regex("regex")
.suffix("suffix")
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HeaderMatchConfig.Builder
A builder for
HeaderMatchConfig |
static class |
HeaderMatchConfig.Jsii$Proxy
An implementation for
HeaderMatchConfig |
| Modifier and Type | Method and Description |
|---|---|
static HeaderMatchConfig.Builder |
builder() |
CfnRoute.HttpRouteHeaderProperty |
getHeaderMatch()
(experimental) Route CFN configuration for the route header match.
|
@Stability(value=Experimental) @NotNull CfnRoute.HttpRouteHeaderProperty getHeaderMatch()
@Stability(value=Experimental) static HeaderMatchConfig.Builder builder()
HeaderMatchConfig.Builder of HeaderMatchConfigCopyright © 2022. All rights reserved.