@Stability(value=Stable)
public static interface CfnGatewayRoute.GatewayRouteMetadataMatchProperty
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.*;
GatewayRouteMetadataMatchProperty gatewayRouteMetadataMatchProperty = GatewayRouteMetadataMatchProperty.builder()
.exact("exact")
.prefix("prefix")
.range(GatewayRouteRangeMatchProperty.builder()
.end(123)
.start(123)
.build())
.regex("regex")
.suffix("suffix")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGatewayRoute.GatewayRouteMetadataMatchProperty.Builder
A builder for
CfnGatewayRoute.GatewayRouteMetadataMatchProperty |
static class |
CfnGatewayRoute.GatewayRouteMetadataMatchProperty.Jsii$Proxy
An implementation for
CfnGatewayRoute.GatewayRouteMetadataMatchProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnGatewayRoute.GatewayRouteMetadataMatchProperty.Builder |
builder() |
default String |
getExact()
The exact method header to be matched on.
|
default String |
getPrefix()
The specified beginning characters of the method header to be matched on.
|
default Object |
getRange()
An object that represents the range of values to match on.
|
default String |
getRegex()
The regex used to match the method header.
|
default String |
getSuffix()
The specified ending characters of the method header to match on.
|
@Stability(value=Stable) @Nullable default String getExact()
@Stability(value=Stable) @Nullable default String getPrefix()
@Stability(value=Stable) @Nullable default Object getRange()
@Stability(value=Stable) @Nullable default String getRegex()
@Stability(value=Stable) @Nullable default String getSuffix()
@Stability(value=Stable) static CfnGatewayRoute.GatewayRouteMetadataMatchProperty.Builder builder()
Copyright © 2022. All rights reserved.