public static interface CfnGatewayRoute.GatewayRouteMetadataMatchProperty
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 java.lang.String |
getExact()
The exact method header to be matched on.
|
default java.lang.String |
getPrefix()
The specified beginning characters of the method header to be matched on.
|
default java.lang.Object |
getRange()
An object that represents the range of values to match on.
|
default java.lang.String |
getRegex()
The regex used to match the method header.
|
default java.lang.String |
getSuffix()
The specified ending characters of the method header to match on.
|
default java.lang.String getExact()
default java.lang.String getPrefix()
default java.lang.Object getRange()
default java.lang.String getRegex()
default java.lang.String getSuffix()
static CfnGatewayRoute.GatewayRouteMetadataMatchProperty.Builder builder()