Class: Aws::ElasticLoadBalancingV2::Types::Rule
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::Rule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Information about a rule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actions ⇒ Array<Types::Action>
The actions.
-
#conditions ⇒ Array<Types::RuleCondition>
The conditions.
-
#is_default ⇒ Boolean
Indicates whether this is the default rule.
-
#priority ⇒ String
The priority.
-
#rule_arn ⇒ String
The Amazon Resource Name (ARN) of the rule.
Instance Attribute Details
#actions ⇒ Array<Types::Action>
The actions. Each rule must include exactly one of the following types of actions: forward, redirect, or fixed-response, and it must be the last action to be performed.
3359 3360 3361 3362 3363 3364 3365 3366 3367 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3359 class Rule < Struct.new( :rule_arn, :priority, :conditions, :actions, :is_default) SENSITIVE = [] include Aws::Structure end |
#conditions ⇒ Array<Types::RuleCondition>
The conditions. Each rule can include zero or one of the following conditions: http-request-method, host-header, path-pattern, and source-ip, and zero or more of the following conditions: http-header and query-string.
3359 3360 3361 3362 3363 3364 3365 3366 3367 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3359 class Rule < Struct.new( :rule_arn, :priority, :conditions, :actions, :is_default) SENSITIVE = [] include Aws::Structure end |
#is_default ⇒ Boolean
Indicates whether this is the default rule.
3359 3360 3361 3362 3363 3364 3365 3366 3367 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3359 class Rule < Struct.new( :rule_arn, :priority, :conditions, :actions, :is_default) SENSITIVE = [] include Aws::Structure end |