Class: Aws::VPCLattice::Types::HttpMatch

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

Overview

Describes criteria that can be applied to incoming requests.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#header_matchesArray<Types::HeaderMatch>

The header matches. Matches incoming requests with rule based on request header value before applying rule action.

Returns:



1999
2000
2001
2002
2003
2004
2005
# File 'lib/aws-sdk-vpclattice/types.rb', line 1999

class HttpMatch < Struct.new(
  :header_matches,
  :method,
  :path_match)
  SENSITIVE = []
  include Aws::Structure
end

#methodString

The HTTP method type.

Returns:

  • (String)


1999
2000
2001
2002
2003
2004
2005
# File 'lib/aws-sdk-vpclattice/types.rb', line 1999

class HttpMatch < Struct.new(
  :header_matches,
  :method,
  :path_match)
  SENSITIVE = []
  include Aws::Structure
end

#path_matchTypes::PathMatch

The path match.

Returns:



1999
2000
2001
2002
2003
2004
2005
# File 'lib/aws-sdk-vpclattice/types.rb', line 1999

class HttpMatch < Struct.new(
  :header_matches,
  :method,
  :path_match)
  SENSITIVE = []
  include Aws::Structure
end