QueryParameterMatchConfig¶
-
class
aws_cdk.aws_appmesh.
QueryParameterMatchConfig
(*, query_parameter_match)¶ Bases:
object
Configuration for
QueryParameterMatch
.- Parameters
query_parameter_match (
QueryParameterProperty
) – 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. import aws_cdk.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.
- Return type