paws.networking (version 0.1.6)

elbv2_set_rule_priorities: Sets the priorities of the specified rules

Description

Sets the priorities of the specified rules.

Usage

elbv2_set_rule_priorities(RulePriorities)

Arguments

RulePriorities

[required] The rule priorities.

Request syntax

svc$set_rule_priorities(
  RulePriorities = list(
    list(
      RuleArn = "string",
      Priority = 123
    )
  )
)

Details

You can reorder the rules as long as there are no priority conflicts in the new order. Any existing rules that you do not specify retain their current priority.

Examples

Run this code
# NOT RUN {
# This example sets the priority of the specified rule.
# }
# NOT RUN {
svc$set_rule_priorities(
  RulePriorities = list(
    list(
      Priority = 5L,
      RuleArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-rule/app/my-lo..."
    )
  )
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab