interface QueryStringKeyValuePairProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RTBFabric.CfnLinkRoutingRulePropsMixin.QueryStringKeyValuePairProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrtbfabric#CfnLinkRoutingRulePropsMixin_QueryStringKeyValuePairProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.CfnLinkRoutingRulePropsMixin.QueryStringKeyValuePairProperty |
Python | aws_cdk.cfn_property_mixins.aws_rtbfabric.CfnLinkRoutingRulePropsMixin.QueryStringKeyValuePairProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rtbfabric » CfnLinkRoutingRulePropsMixin » QueryStringKeyValuePairProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rtbfabric as rtbfabric } from '@aws-cdk/cfn-property-mixins';
const queryStringKeyValuePairProperty: rtbfabric.CfnLinkRoutingRulePropsMixin.QueryStringKeyValuePairProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | Query string key — RFC 3986 unreserved characters. |
| value? | string | Query string value — RFC 3986 unreserved characters. |
key?
Type:
string
(optional)
Query string key — RFC 3986 unreserved characters.
value?
Type:
string
(optional)
Query string value — RFC 3986 unreserved characters.

.NET
Go
Java
Python
TypeScript