Class: Aws::AppMesh::Types::GrpcGatewayRouteMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::GrpcGatewayRouteMetadata
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass GrpcGatewayRouteMetadata 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 representing the metadata of the gateway route.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#invert ⇒ Boolean
Specify
True
to match anything except the match criteria. -
#match ⇒ Types::GrpcMetadataMatchMethod
The criteria for determining a metadata match.
-
#name ⇒ String
A name for the gateway route metadata.
Instance Attribute Details
#invert ⇒ Boolean
Specify True
to match anything except the match criteria. The
default value is False
.
3194 3195 3196 3197 3198 3199 3200 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3194 class GrpcGatewayRouteMetadata < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |
#match ⇒ Types::GrpcMetadataMatchMethod
The criteria for determining a metadata match.
3194 3195 3196 3197 3198 3199 3200 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3194 class GrpcGatewayRouteMetadata < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name for the gateway route metadata.
3194 3195 3196 3197 3198 3199 3200 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3194 class GrpcGatewayRouteMetadata < Struct.new( :invert, :match, :name) SENSITIVE = [] include Aws::Structure end |