Class: Aws::AppMesh::Types::HttpRouteHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::HttpRouteHeader
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appmesh/types.rb
Overview
An object that represents the HTTP header in the request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#invert ⇒ Boolean
Specify ‘True` to match anything except the match criteria.
-
#match ⇒ Types::HeaderMatchMethod
The ‘HeaderMatchMethod` object.
-
#name ⇒ String
A name for the HTTP header in the client request that will be matched on.
Instance Attribute Details
#invert ⇒ Boolean
Specify ‘True` to match anything except the match criteria. The default value is `False`.
2570 2571 2572 2573 2574 2575 2576 |
# File 'lib/aws-sdk-appmesh/types.rb', line 2570 class HttpRouteHeader < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |
#match ⇒ Types::HeaderMatchMethod
The ‘HeaderMatchMethod` object.
2570 2571 2572 2573 2574 2575 2576 |
# File 'lib/aws-sdk-appmesh/types.rb', line 2570 class HttpRouteHeader < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name for the HTTP header in the client request that will be matched on.
2570 2571 2572 2573 2574 2575 2576 |
# File 'lib/aws-sdk-appmesh/types.rb', line 2570 class HttpRouteHeader < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |