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