add describe_rules to elbv2
This commit is contained in:
parent
3ac10945c1
commit
a73fa64043
4 changed files with 118 additions and 1 deletions
|
|
@ -142,3 +142,11 @@ class ActionTargetGroupNotFoundError(ELBClientError):
|
|||
"TargetGroupNotFound",
|
||||
"Target group '%s' not found" % arn
|
||||
)
|
||||
|
||||
|
||||
class InvalidDescribeRulesRequest(ELBClientError):
|
||||
|
||||
def __init__(self, msg):
|
||||
super(InvalidDescribeRulesRequest, self).__init__(
|
||||
"ValidationError", msg
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue