interface QueryParameterProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppMesh.CfnRoute.QueryParameterProperty |
Java | software.amazon.awscdk.services.appmesh.CfnRoute.QueryParameterProperty |
Python | aws_cdk.aws_appmesh.CfnRoute.QueryParameterProperty |
TypeScript | @aws-cdk/aws-appmesh » CfnRoute » 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 * as appmesh from '@aws-cdk/aws-appmesh';
const queryParameterProperty: appmesh.CfnRoute.QueryParameterProperty = {
name: 'name',
// the properties below are optional
match: {
exact: 'exact',
},
};
Properties
Name | Type | Description |
---|---|---|
name | string | A name for the query parameter that will be matched on. |
match? | IResolvable | Http | The query parameter to match on. |
name
Type:
string
A name for the query parameter that will be matched on.
match?
Type:
IResolvable
|
Http
(optional)
The query parameter to match on.