Class: Aws::AppMesh::Types::HttpPathMatch

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

Overview

An object representing the path to match in the request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#exactString

The exact path to match on.

Returns:

  • (String)


2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2431

class HttpPathMatch < Struct.new(
  :exact,
  :regex)
  SENSITIVE = []
  include Aws::Structure
end

#regexString

The regex used to match the path.

Returns:

  • (String)


2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 2431

class HttpPathMatch < Struct.new(
  :exact,
  :regex)
  SENSITIVE = []
  include Aws::Structure
end