Interface CfnGatewayRoute.GatewayRouteMetadataMatchProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayRoute.GatewayRouteMetadataMatchProperty.Jsii$Proxy
- Enclosing class:
CfnGatewayRoute
@Stability(Stable)
public static interface CfnGatewayRoute.GatewayRouteMetadataMatchProperty
extends software.amazon.jsii.JsiiSerializable
An object representing the method header to be matched.
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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayRoute.GatewayRouteMetadataMatchPropertystatic final classAn implementation forCfnGatewayRoute.GatewayRouteMetadataMatchProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetExact()The exact method header to be matched on.default StringThe specified beginning characters of the method header to be matched on.default ObjectgetRange()An object that represents the range of values to match on.default StringgetRegex()The regex used to match the method header.default StringThe specified ending characters of the method header to match on.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExact
The exact method header to be matched on.- See Also:
-
getPrefix
The specified beginning characters of the method header to be matched on.- See Also:
-
getRange
An object that represents the range of values to match on.Returns union: either
IResolvableorCfnGatewayRoute.GatewayRouteRangeMatchProperty- See Also:
-
getRegex
The regex used to match the method header.- See Also:
-
getSuffix
The specified ending characters of the method header to match on.- See Also:
-
builder
-