Class: Aws::ElasticLoadBalancingV2::Types::QueryStringKeyValuePair
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::QueryStringKeyValuePair
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Note:
When making an API call, you may pass QueryStringKeyValuePair data as a hash:
{
key: "StringValue",
value: "StringValue",
}
Information about a key/value pair.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key.
-
#value ⇒ String
The value.
Instance Attribute Details
#key ⇒ String
The key. You can omit the key.
3153 3154 3155 3156 3157 3158 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3153 class QueryStringKeyValuePair < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value.
3153 3154 3155 3156 3157 3158 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3153 class QueryStringKeyValuePair < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |