interface QueryParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppMesh.Mixins.CfnGatewayRoutePropsMixin.QueryParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappmesh/mixins#CfnGatewayRoutePropsMixin_QueryParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.appmesh.mixins.CfnGatewayRoutePropsMixin.QueryParameterProperty |
Python | aws_cdk.mixins_preview.aws_appmesh.mixins.CfnGatewayRoutePropsMixin.QueryParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appmesh » mixins » 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 { mixins as appmesh_mixins } from '@aws-cdk/mixins-preview/aws-appmesh';
const queryParameterProperty: appmesh_mixins.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