Interface QueryParameterMatchConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
QueryParameterMatchConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-25T14:21:10.165Z")
@Stability(Stable)
public interface QueryParameterMatchConfig
extends software.amazon.jsii.JsiiSerializable
Configuration for
QueryParameterMatch
.
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.*; QueryParameterMatchConfig queryParameterMatchConfig = QueryParameterMatchConfig.builder() .queryParameterMatch(QueryParameterProperty.builder() .name("name") // the properties below are optional .match(HttpQueryParameterMatchProperty.builder() .exact("exact") .build()) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forQueryParameterMatchConfig
static final class
An implementation forQueryParameterMatchConfig
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Route CFN configuration for route query parameter match.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getQueryParameterMatch
Route CFN configuration for route query parameter match. -
builder
- Returns:
- a
QueryParameterMatchConfig.Builder
ofQueryParameterMatchConfig
-