aws-cdk-lib.aws_elasticloadbalancingv2.QueryStringCondition

interface QueryStringCondition

LanguageType name
.NETAmazon.CDK.AWS.ElasticLoadBalancingV2.QueryStringCondition
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#QueryStringCondition
Javasoftware.amazon.awscdk.services.elasticloadbalancingv2.QueryStringCondition
Pythonaws_cdk.aws_elasticloadbalancingv2.QueryStringCondition
TypeScript (source)aws-cdk-lib » aws_elasticloadbalancingv2 » QueryStringCondition

Properties for the key/value pair of the query string.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';
const queryStringCondition: elbv2.QueryStringCondition = {
  value: 'value',

  // the properties below are optional
  key: 'key',
};

Properties

NameTypeDescription
valuestringThe query string value for the condition.
key?stringThe query string key for the condition.

value

Type: string

The query string value for the condition.


key?

Type: string (optional, default: Any key can be matched.)

The query string key for the condition.