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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRoute.QueryParameterPropertystatic final classAn implementation forCfnRoute.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.Returns union: either
IResolvableorCfnRoute.HttpQueryParameterMatchProperty- See Also:
-
builder
-