QueryStringCondition
- class aws_cdk.aws_elasticloadbalancingv2.QueryStringCondition(*, value, key=None)
Bases:
object
Properties for the key/value pair of the query string.
- Parameters:
value (
str
) – The query string value for the condition.key (
Optional
[str
]) – The query string key for the condition. Default: - Any key can be matched.
- 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_elasticloadbalancingv2 as elbv2 query_string_condition = elbv2.QueryStringCondition( value="value", # the properties below are optional key="key" )
Attributes
- key
The query string key for the condition.
- Default:
Any key can be matched.
- value
The query string value for the condition.