public static interface CfnGatewayRoute.QueryParameterProperty
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 java.lang.Object |
getMatch()
The query parameter to match on.
|
java.lang.String |
getName()
A name for the query parameter that will be matched on.
|
java.lang.String getName()
default java.lang.Object getMatch()
static CfnGatewayRoute.QueryParameterProperty.Builder builder()