interface QueryParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnGatewayRoutePropsMixin.QueryParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnGatewayRoutePropsMixin_QueryParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnGatewayRoutePropsMixin.QueryParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnGatewayRoutePropsMixin.QueryParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnGatewayRoutePropsMixin » QueryParameterProperty |
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 { aws_appmesh as appmesh } from '@aws-cdk/cfn-property-mixins';
const queryParameterProperty: appmesh.CfnGatewayRoutePropsMixin.QueryParameterProperty = {
match: {
exact: 'exact',
},
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| match? | IResolvable | Http | The query parameter to match on. |
| name? | string | A name for the query parameter that will be matched on. |
match?
Type:
IResolvable | Http
(optional)
The query parameter to match on.
name?
Type:
string
(optional)
A name for the query parameter that will be matched on.

.NET
Go
Java
Python
TypeScript