Delete Rule
elbv2_delete_rule | R Documentation |
Deletes the specified rule¶
Description¶
Deletes the specified rule.
You can't delete the default rule.
Usage¶
elbv2_delete_rule(RuleArn)
Arguments¶
RuleArn |
[required] The Amazon Resource Name (ARN) of the rule. |
Value¶
An empty list.
Request syntax¶
svc$delete_rule(
RuleArn = "string"
)
Examples¶
## Not run:
# This example deletes the specified rule.
svc$delete_rule(
RuleArn = "arn:aws:elasticloadbalancing:us-west-2:123456789012:listener-r..."
)
## End(Not run)