Class: Aws::VPCLattice::Types::Matcher
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::Matcher
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-vpclattice/types.rb
Overview
Note:
Matcher is a union - when making an API calls you must set exactly one of the members.
Note:
Matcher is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Matcher corresponding to the set member.
Describes the codes to use when checking for a successful response from a target for health checks.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#http_code ⇒ String
The HTTP code to use when checking for a successful response from a target.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#http_code ⇒ String
The HTTP code to use when checking for a successful response from a target.
2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 2484 class Matcher < Struct.new( :http_code, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class HttpCode < Matcher; end class Unknown < Matcher; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2484 2485 2486 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 2484 def unknown @unknown end |