Class: Aws::AppMesh::Types::HttpQueryParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::HttpQueryParameter
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass HttpQueryParameter data as a hash:
{
match: {
exact: "String",
},
name: "QueryParameterName", # required
}
An object that represents the query parameter in the request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#match ⇒ Types::QueryParameterMatch
The query parameter to match on.
-
#name ⇒ String
A name for the query parameter that will be matched on.
Instance Attribute Details
#match ⇒ Types::QueryParameterMatch
The query parameter to match on.
4153 4154 4155 4156 4157 4158 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 4153 class HttpQueryParameter < Struct.new( :match, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name for the query parameter that will be matched on.
4153 4154 4155 4156 4157 4158 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 4153 class HttpQueryParameter < Struct.new( :match, :name) SENSITIVE = [] include Aws::Structure end |