Add elasticbeanstalk Tags handling

This commit is contained in:
Niels Laukens 2019-09-04 16:56:06 +02:00
commit 7f387b0bb9
No known key found for this signature in database
GPG key ID: D1397B5A6435A6D8
4 changed files with 203 additions and 10 deletions

View file

@ -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)