moto/moto/ssm/urls.py
2021-10-18 19:44:29 +00:00

9 lines
219 B
Python

from .responses import SimpleSystemManagerResponse
url_bases = [
r"https?://ssm\.(.+)\.amazonaws\.com",
r"https?://ssm\.(.+)\.amazonaws\.com\.cn",
]
url_paths = {"{0}/$": SimpleSystemManagerResponse.dispatch}