Class: Aws::VPCLattice::Types::RuleAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::VPCLattice::Types::RuleAction
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-vpclattice/types.rb
Overview
Note:
RuleAction is a union - when making an API calls you must set exactly one of the members.
Note:
RuleAction is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleAction corresponding to the set member.
Describes the action for a rule.
Direct Known Subclasses
Defined Under Namespace
Classes: FixedResponse, Forward, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#fixed_response ⇒ Types::FixedResponseAction
The fixed response action.
-
#forward ⇒ Types::ForwardAction
The forward action.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#fixed_response ⇒ Types::FixedResponseAction
The fixed response action. The rule returns a custom HTTP response.
2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 2689 class RuleAction < Struct.new( :fixed_response, :forward, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class FixedResponse < RuleAction; end class Forward < RuleAction; end class Unknown < RuleAction; end end |
#forward ⇒ Types::ForwardAction
The forward action. Traffic that matches the rule is forwarded to the specified target groups.
2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 2689 class RuleAction < Struct.new( :fixed_response, :forward, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class FixedResponse < RuleAction; end class Forward < RuleAction; end class Unknown < RuleAction; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2689 2690 2691 |
# File 'lib/aws-sdk-vpclattice/types.rb', line 2689 def unknown @unknown end |