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
Note:
When making an API call, you may pass HttpGatewayRouteHeader 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 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
.
3921 3922 3923 3924 3925 3926 3927 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3921 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.
3921 3922 3923 3924 3925 3926 3927 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3921 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.
3921 3922 3923 3924 3925 3926 3927 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3921 class HttpGatewayRouteHeader < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |