Add elasticbeanstalk Tags handling
This commit is contained in:
parent
9bfbd8e008
commit
7f387b0bb9
4 changed files with 203 additions and 10 deletions
|
|
@ -5,3 +5,9 @@ class InvalidParameterValueError(RESTError):
|
|||
def __init__(self, message):
|
||||
super(InvalidParameterValueError, self).__init__(
|
||||
"InvalidParameterValue", message)
|
||||
|
||||
|
||||
class ResourceNotFoundException(RESTError):
|
||||
def __init__(self, message):
|
||||
super(ResourceNotFoundException, self).__init__(
|
||||
"ResourceNotFoundException", message)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue