fix issue 488
This commit is contained in:
parent
5d421dc343
commit
d273fa15f3
2 changed files with 11 additions and 1 deletions
|
|
@ -27,3 +27,11 @@ class TooManyTagsError(ELBClientError):
|
|||
super(TooManyTagsError, self).__init__(
|
||||
"LoadBalancerNotFound",
|
||||
"The quota for the number of tags that can be assigned to a load balancer has been reached")
|
||||
|
||||
|
||||
class BadHealthCheckDefinition(ELBClientError):
|
||||
def __init__(self):
|
||||
super(BadHealthCheckDefinition, self).__init__(
|
||||
"ValidationError",
|
||||
"HealthCheck Target must begin with one of HTTP, TCP, HTTPS, SSL")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue