Adding support for querying AWS Config for supported configurations.
At this time, only adding support for S3.
This commit is contained in:
parent
4497f18c1a
commit
c4b310d7a5
10 changed files with 675 additions and 2 deletions
|
|
@ -104,3 +104,11 @@ class AuthFailureError(RESTError):
|
|||
super(AuthFailureError, self).__init__(
|
||||
'AuthFailure',
|
||||
"AWS was not able to validate the provided access credentials")
|
||||
|
||||
|
||||
class InvalidNextTokenException(JsonRESTError):
|
||||
"""For AWS Config resource listing. This will be used by many different resource types, and so it is in moto.core."""
|
||||
code = 400
|
||||
|
||||
def __init__(self):
|
||||
super(InvalidNextTokenException, self).__init__('InvalidNextTokenException', 'The nextToken provided is invalid')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue