Class: Aws::AppMesh::Types::HttpRouteHeader
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::HttpRouteHeader
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass HttpRouteHeader data as a hash:
{
invert: false,
match: {
exact: "HeaderMatch",
prefix: "HeaderMatch",
range: {
end: 1, # required
start: 1, # required
},
regex: "HeaderMatch",
suffix: "HeaderMatch",
},
name: "HeaderName", # required
}
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
.
4368 4369 4370 4371 4372 4373 4374 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 4368 class HttpRouteHeader < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |
#match ⇒ Types::HeaderMatchMethod
The HeaderMatchMethod
object.
4368 4369 4370 4371 4372 4373 4374 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 4368 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.
4368 4369 4370 4371 4372 4373 4374 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 4368 class HttpRouteHeader < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |