Interface CfnGatewayRoutePropsMixin.GrpcGatewayRouteMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayRoutePropsMixin.GrpcGatewayRouteMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnGatewayRoutePropsMixin
@Stability(Stable)
public static interface CfnGatewayRoutePropsMixin.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.cfnpropertymixins.services.appmesh.*;
GrpcGatewayRouteMetadataProperty grpcGatewayRouteMetadataProperty = GrpcGatewayRouteMetadataProperty.builder()
.invert(false)
.match(GatewayRouteMetadataMatchProperty.builder()
.exact("exact")
.prefix("prefix")
.range(GatewayRouteRangeMatchProperty.builder()
.end(123)
.start(123)
.build())
.regex("regex")
.suffix("suffix")
.build())
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnGatewayRoutePropsMixin.GrpcGatewayRouteMetadataProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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
IResolvableorCfnGatewayRoutePropsMixin.GatewayRouteMetadataMatchProperty- See Also:
-
getName
A name for the gateway route metadata.- See Also:
-
builder
@Stability(Stable) static CfnGatewayRoutePropsMixin.GrpcGatewayRouteMetadataProperty.Builder builder()
-