Class: Aws::AppMesh::Types::HttpGatewayRouteHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::HttpGatewayRouteHeader
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
An object that represents the HTTP header in the gateway route.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#invert ⇒ Boolean
Specify
True
to match anything except the match criteria. -
#match ⇒ Types::HeaderMatchMethod
An object that represents the method and value to match with the header value sent in a request.
-
#name ⇒ String
A name for the HTTP header in the gateway route that will be matched on.
Instance Attribute Details
#invert ⇒ Boolean
Specify True
to match anything except the match criteria. The
default value is False
.
2302 2303 2304 2305 2306 2307 2308 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2302 class HttpGatewayRouteHeader < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |
#match ⇒ Types::HeaderMatchMethod
An object that represents the method and value to match with the header value sent in a request. Specify one match method.
2302 2303 2304 2305 2306 2307 2308 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2302 class HttpGatewayRouteHeader < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name for the HTTP header in the gateway route that will be matched on.
2302 2303 2304 2305 2306 2307 2308 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2302 class HttpGatewayRouteHeader < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |