@Stability(value=Stable)
public static interface CfnGatewayRoute.QueryParameterProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnGatewayRoute.QueryParameterProperty.Builder
A builder for
CfnGatewayRoute.QueryParameterProperty |
static class |
CfnGatewayRoute.QueryParameterProperty.Jsii$Proxy
An implementation for
CfnGatewayRoute.QueryParameterProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnGatewayRoute.QueryParameterProperty.Builder |
builder() |
default Object |
getMatch()
The query parameter to match on.
|
String |
getName()
A name for the query parameter that will be matched on.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getMatch()
@Stability(value=Stable) static CfnGatewayRoute.QueryParameterProperty.Builder builder()
Copyright © 2022. All rights reserved.