aws-cdk-lib.aws_appmesh.CfnRoute.QueryParameterProperty

interface QueryParameterProperty

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.CfnRoute.QueryParameterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnRoute_QueryParameterProperty
Javasoftware.amazon.awscdk.services.appmesh.CfnRoute.QueryParameterProperty
Pythonaws_cdk.aws_appmesh.CfnRoute.QueryParameterProperty
TypeScript aws-cdk-lib » 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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
const queryParameterProperty: appmesh.CfnRoute.QueryParameterProperty = {
  name: 'name',

  // the properties below are optional
  match: {
    exact: 'exact',
  },
};

Properties

NameTypeDescription
namestringA name for the query parameter that will be matched on.
match?IResolvable | HttpQueryParameterMatchPropertyThe query parameter to match on.

name

Type: string

A name for the query parameter that will be matched on.


match?

Type: IResolvable | HttpQueryParameterMatchProperty (optional)

The query parameter to match on.