2021-08-24 11:49:45 -04:00
|
|
|
"""{{ escaped_service }} base URL and path."""
|
2017-10-02 07:17:02 +09:00
|
|
|
from .responses import {{ service_class }}Response
|
|
|
|
|
|
|
|
url_bases = [
|
2021-09-14 05:39:39 -04:00
|
|
|
r"https?://{{ endpoint_prefix }}\.(.+)\.amazonaws\.com",
|
2017-10-02 07:17:02 +09:00
|
|
|
]
|
|
|
|
|
2017-10-25 03:45:39 +09:00
|
|
|
{% if api_protocol == 'rest-json' %}
|
|
|
|
response = {{ service_class }}Response()
|
|
|
|
{% endif %}
|
|
|
|
|
2017-10-02 07:17:02 +09:00
|
|
|
url_paths = {
|
|
|
|
}
|