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 = [
|
|
|
|
"https?://{{ endpoint_prefix }}.(.+).amazonaws.com",
|
|
|
|
]
|
|
|
|
|
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 = {
|
|
|
|
}
|