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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGatewayRoute.GrpcGatewayRouteMetadataProperty
static final class
An 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. -
getInvert
SpecifyTrue
to match anything except the match criteria.The default value is
False
. -
getMatch
The criteria for determining a metadata match. -
builder
-