Interface CfnGatewayRoute.GrpcGatewayRouteMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayRoute.GrpcGatewayRouteMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnGatewayRoute
@Stability(Stable)
public static interface CfnGatewayRoute.GrpcGatewayRouteMetadataProperty
extends software.amazon.jsii.JsiiSerializable
An object representing the metadata of the gateway route.
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.*;
GrpcGatewayRouteMetadataProperty grpcGatewayRouteMetadataProperty = GrpcGatewayRouteMetadataProperty.builder()
.name("name")
// the properties below are optional
.invert(false)
.match(GatewayRouteMetadataMatchProperty.builder()
.exact("exact")
.prefix("prefix")
.range(GatewayRouteRangeMatchProperty.builder()
.end(123)
.start(123)
.build())
.regex("regex")
.suffix("suffix")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayRoute.GrpcGatewayRouteMetadataPropertystatic final classAn implementation forCfnGatewayRoute.GrpcGatewayRouteMetadataProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A name for the gateway route metadata.- See Also:
-
getInvert
SpecifyTrueto match anything except the match criteria.The default value is
False.Returns union: either
BooleanorIResolvable- See Also:
-
getMatch
The criteria for determining a metadata match.Returns union: either
IResolvableorCfnGatewayRoute.GatewayRouteMetadataMatchProperty- See Also:
-
builder
-