summaryrefslogtreecommitdiff
path: root/kombu/asynchronous/aws/ext.py
blob: 2dedc812218ac03457f3066e5d28a71324220783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""Amazon boto3 interface."""

try:
    import boto3
    from botocore import exceptions
    from botocore.awsrequest import AWSRequest
    from botocore.response import get_response
except ImportError:
    boto3 = None

    class _void:
        pass

    class BotoCoreError(Exception):
        pass
    exceptions = _void()
    exceptions.BotoCoreError = BotoCoreError
    AWSRequest = _void()
    get_response = _void()


__all__ = (
    'exceptions', 'AWSRequest', 'get_response'
)