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.
3404 3405 3406 3407 3408 3409 3410 3411 3412 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3404 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`.
3404 3405 3406 3407 3408 3409 3410 3411 3412 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3404 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.
3404 3405 3406 3407 3408 3409 3410 3411 3412 |
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3404 class Rule < Struct.new( :rule_arn, :priority, :conditions, :actions, :is_default) SENSITIVE = [] include Aws::Structure end |