Interface CfnRoute.GrpcRouteMetadataMatchMethodProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRoute.GrpcRouteMetadataMatchMethodProperty.Jsii$Proxy
Enclosing class:
CfnRoute

@Stability(Stable) public static interface CfnRoute.GrpcRouteMetadataMatchMethodProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the match method.

Specify one of the match values.

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.*;
 GrpcRouteMetadataMatchMethodProperty grpcRouteMetadataMatchMethodProperty = GrpcRouteMetadataMatchMethodProperty.builder()
         .exact("exact")
         .prefix("prefix")
         .range(MatchRangeProperty.builder()
                 .end(123)
                 .start(123)
                 .build())
         .regex("regex")
         .suffix("suffix")
         .build();