@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.538Z") @Stability(value=Stable) 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()
Route CFN configuration for the route header match.
|
@Stability(value=Stable) @NotNull CfnRoute.HttpRouteHeaderProperty getHeaderMatch()
@Stability(value=Stable) static HeaderMatchConfig.Builder builder()
HeaderMatchConfig.Builder of HeaderMatchConfigCopyright © 2022. All rights reserved.