13 lines
300 B
Python
13 lines
300 B
Python
|
from __future__ import unicode_literals
|
||
|
from .responses import OpsWorksResponse
|
||
|
|
||
|
# AWS OpsWorks has a single endpoint: opsworks.us-east-1.amazonaws.com
|
||
|
# and only supports HTTPS requests.
|
||
|
url_bases = [
|
||
|
"opsworks.us-east-1.amazonaws.com"
|
||
|
]
|
||
|
|
||
|
url_paths = {
|
||
|
'{0}/$': OpsWorksResponse.dispatch,
|
||
|
}
|