Class: Aws::AppMesh::Types::GrpcRouteMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::GrpcRouteMetadata
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass GrpcRouteMetadata 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 match metadata for the route.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#invert ⇒ Boolean
Specify
True
to match anything except the match criteria. -
#match ⇒ Types::GrpcRouteMetadataMatchMethod
An object that represents the data to match from the request.
-
#name ⇒ String
The name of the route.
Instance Attribute Details
#invert ⇒ Boolean
Specify True
to match anything except the match criteria. The
default value is False
.
3060 3061 3062 3063 3064 3065 3066 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3060 class GrpcRouteMetadata < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |
#match ⇒ Types::GrpcRouteMetadataMatchMethod
An object that represents the data to match from the request.
3060 3061 3062 3063 3064 3065 3066 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3060 class GrpcRouteMetadata < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the route.
3060 3061 3062 3063 3064 3065 3066 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3060 class GrpcRouteMetadata < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |