QueryParameterMatchConfig
- class aws_cdk.aws_appmesh.QueryParameterMatchConfig(*, query_parameter_match)
- Bases: - object- Configuration for - QueryParameterMatch.- Parameters:
- query_parameter_match ( - Union[- QueryParameterProperty,- Dict[- str,- Any]]) – Route CFN configuration for route query parameter match.
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_appmesh as appmesh query_parameter_match_config = appmesh.QueryParameterMatchConfig( query_parameter_match=appmesh.CfnRoute.QueryParameterProperty( name="name", # the properties below are optional match=appmesh.CfnRoute.HttpQueryParameterMatchProperty( exact="exact" ) ) ) - Attributes - query_parameter_match
- Route CFN configuration for route query parameter match.