Class: Aws::AppMesh::Types::GrpcRoute

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appmesh/types.rb

Overview

Note:

When making an API call, you may pass GrpcRoute data as a hash:

{
  action: { # required
    weighted_targets: [ # required
      {
        virtual_node: "ResourceName", # required
        weight: 1, # required
      },
    ],
  },
  match: { # required
    metadata: [
      {
        invert: false,
        match: {
          exact: "HeaderMatch",
          prefix: "HeaderMatch",
          range: {
            end: 1, # required
            start: 1, # required
          },
          regex: "HeaderMatch",
          suffix: "HeaderMatch",
        },
        name: "HeaderName", # required
      },
    ],
    method_name: "MethodName",
    service_name: "ServiceName",
  },
  retry_policy: {
    grpc_retry_events: ["cancelled"], # accepts cancelled, deadline-exceeded, internal, resource-exhausted, unavailable
    http_retry_events: ["HttpRetryPolicyEvent"],
    max_retries: 1, # required
    per_retry_timeout: { # required
      unit: "ms", # accepts ms, s
      value: 1,
    },
    tcp_retry_events: ["connection-error"], # accepts connection-error
  },
}

An object that represents a GRPC route type.

Instance Attribute Summary collapse

Instance Attribute Details

#actionTypes::GrpcRouteAction

An object that represents the action to take if a match is determined.



2434
2435
2436
2437
2438
2439
# File 'lib/aws-sdk-appmesh/types.rb', line 2434

class GrpcRoute < Struct.new(
  :action,
  :match,
  :retry_policy)
  include Aws::Structure
end

#matchTypes::GrpcRouteMatch

An object that represents the criteria for determining a request match.



2434
2435
2436
2437
2438
2439
# File 'lib/aws-sdk-appmesh/types.rb', line 2434

class GrpcRoute < Struct.new(
  :action,
  :match,
  :retry_policy)
  include Aws::Structure
end

#retry_policyTypes::GrpcRetryPolicy

An object that represents a retry policy.



2434
2435
2436
2437
2438
2439
# File 'lib/aws-sdk-appmesh/types.rb', line 2434

class GrpcRoute < Struct.new(
  :action,
  :match,
  :retry_policy)
  include Aws::Structure
end