Interface CfnGatewayRoutePropsMixin.QueryParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayRoutePropsMixin.QueryParameterProperty.Jsii$Proxy
- Enclosing class:
CfnGatewayRoutePropsMixin
@Stability(Stable)
public static interface CfnGatewayRoutePropsMixin.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.cfnpropertymixins.services.appmesh.*;
QueryParameterProperty queryParameterProperty = QueryParameterProperty.builder()
.match(HttpQueryParameterMatchProperty.builder()
.exact("exact")
.build())
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayRoutePropsMixin.QueryParameterPropertystatic final classAn implementation forCfnGatewayRoutePropsMixin.QueryParameterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMatch
The query parameter to match on.Returns union: either
IResolvableorCfnGatewayRoutePropsMixin.HttpQueryParameterMatchProperty- See Also:
-
getName
A name for the query parameter that will be matched on.- See Also:
-
builder
-