moto/moto/batch/urls.py

11 lines
281 B
Python

from __future__ import unicode_literals
from .responses import BatchResponse
url_bases = [
"https?://batch.(.+).amazonaws.com",
]
url_paths = {
'{0}/v1/createcomputeenvironment': BatchResponse.dispatch,
'{0}/v1/describecomputeenvironments': BatchResponse.dispatch,
}