Interface CfnRoute.QueryParameterProperty

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

@Stability(Stable) public static interface CfnRoute.QueryParameterProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the query parameter in the request.

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.*;
 QueryParameterProperty queryParameterProperty = QueryParameterProperty.builder()
         .name("name")
         // the properties below are optional
         .match(HttpQueryParameterMatchProperty.builder()
                 .exact("exact")
                 .build())
         .build();