Interface QueryParameterMatchConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
QueryParameterMatchConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:32.369Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forQueryParameterMatchConfigstatic final classAn 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.BuilderofQueryParameterMatchConfig
-