2017-04-18 19:09:10 +02:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
from .responses import SimpleSystemManagerResponse
|
|
|
|
|
|
|
|
|
|
url_bases = [
|
|
|
|
|
"https?://ssm.(.+).amazonaws.com",
|
2018-12-19 15:02:36 -08:00
|
|
|
"https?://ssm.(.+).amazonaws.com.cn",
|
2017-04-18 19:09:10 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
url_paths = {
|
|
|
|
|
'{0}/$': SimpleSystemManagerResponse.dispatch,
|
|
|
|
|
}
|