You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AppMesh::Types::GrpcRouteMetadata

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing GrpcRouteMetadata as input to an Aws::Client method, you can use a vanilla 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.

Instance Attribute Summary collapse

Instance Attribute Details

#invertBoolean

Specify True to match anything except the match criteria. The default value is False.

Returns:

  • (Boolean)

    Specify True to match anything except the match criteria.

#matchTypes::GrpcRouteMetadataMatchMethod

An object that represents the data to match from the request.

Returns:

#nameString

The name of the route.

Returns:

  • (String)

    The name of the route.