Class: Aws::ElasticLoadBalancingV2::Types::Rule

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb

Overview

Information about a rule.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#actionsArray<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.

Returns:



3070
3071
3072
3073
3074
3075
3076
3077
3078
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3070

class Rule < Struct.new(
  :rule_arn,
  :priority,
  :conditions,
  :actions,
  :is_default)
  SENSITIVE = []
  include Aws::Structure
end

#conditionsArray<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.

Returns:



3070
3071
3072
3073
3074
3075
3076
3077
3078
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3070

class Rule < Struct.new(
  :rule_arn,
  :priority,
  :conditions,
  :actions,
  :is_default)
  SENSITIVE = []
  include Aws::Structure
end

#is_defaultBoolean

Indicates whether this is the default rule.

Returns:

  • (Boolean)


3070
3071
3072
3073
3074
3075
3076
3077
3078
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3070

class Rule < Struct.new(
  :rule_arn,
  :priority,
  :conditions,
  :actions,
  :is_default)
  SENSITIVE = []
  include Aws::Structure
end

#priorityString

The priority.

Returns:

  • (String)


3070
3071
3072
3073
3074
3075
3076
3077
3078
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3070

class Rule < Struct.new(
  :rule_arn,
  :priority,
  :conditions,
  :actions,
  :is_default)
  SENSITIVE = []
  include Aws::Structure
end

#rule_arnString

The Amazon Resource Name (ARN) of the rule.

Returns:

  • (String)


3070
3071
3072
3073
3074
3075
3076
3077
3078
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3070

class Rule < Struct.new(
  :rule_arn,
  :priority,
  :conditions,
  :actions,
  :is_default)
  SENSITIVE = []
  include Aws::Structure
end