add modify_rules to elbv2

This commit is contained in:
Toshiya Kawasaki 2017-08-17 02:25:39 +09:00
commit 9bc6779485
4 changed files with 135 additions and 2 deletions

View file

@ -150,3 +150,11 @@ class InvalidDescribeRulesRequest(ELBClientError):
super(InvalidDescribeRulesRequest, self).__init__(
"ValidationError", msg
)
class RuleNotFoundError(ELBClientError):
def __init__(self):
super(RuleNotFoundError, self).__init__(
"RuleNotFound",
"The specified rule does not exist.")