Interface CfnGatewayRoute.QueryParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayRoute.QueryParameterProperty.Jsii$Proxy
- Enclosing class:
CfnGatewayRoute
@Stability(Stable)
public static interface CfnGatewayRoute.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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnGatewayRoute.QueryParameterProperty
static final class
An implementation forCfnGatewayRoute.QueryParameterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A name for the query parameter that will be matched on.- See Also:
-
getMatch
The query parameter to match on.- See Also:
-
builder
-