Class: Aws::ElasticLoadBalancingV2::Types::RulePriorityPair
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticLoadBalancingV2::Types::RulePriorityPair
- Defined in:
- gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb
Overview
Note:
When making an API call, you may pass RulePriorityPair data as a hash:
{
rule_arn: "RuleArn",
priority: 1,
}
Information about the priorities for the rules for a listener.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#priority ⇒ Integer
The rule priority.
-
#rule_arn ⇒ String
The Amazon Resource Name (ARN) of the rule.
Instance Attribute Details
#priority ⇒ Integer
The rule priority.
3533 3534 3535 3536 3537 3538 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3533 class RulePriorityPair < Struct.new( :rule_arn, :priority) SENSITIVE = [] include Aws::Structure end |
#rule_arn ⇒ String
The Amazon Resource Name (ARN) of the rule.
3533 3534 3535 3536 3537 3538 |
# File 'gems/aws-sdk-elasticloadbalancingv2/lib/aws-sdk-elasticloadbalancingv2/types.rb', line 3533 class RulePriorityPair < Struct.new( :rule_arn, :priority) SENSITIVE = [] include Aws::Structure end |