Interface CfnRoutePropsMixin.GrpcRouteMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRoutePropsMixin.GrpcRouteMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnRoutePropsMixin
@Stability(Stable)
public static interface CfnRoutePropsMixin.GrpcRouteMetadataProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents the match metadata for the 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.*;
GrpcRouteMetadataProperty grpcRouteMetadataProperty = GrpcRouteMetadataProperty.builder()
.invert(false)
.match(GrpcRouteMetadataMatchMethodProperty.builder()
.exact("exact")
.prefix("prefix")
.range(MatchRangeProperty.builder()
.end(123)
.start(123)
.build())
.regex("regex")
.suffix("suffix")
.build())
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRoutePropsMixin.GrpcRouteMetadataPropertystatic final classAn implementation forCfnRoutePropsMixin.GrpcRouteMetadataProperty -
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
An object that represents the data to match from the request.Returns union: either
IResolvableorCfnRoutePropsMixin.GrpcRouteMetadataMatchMethodProperty- See Also:
-
getName
The name of the route.- See Also:
-
builder
-