* Basic upport for Endpoints, EndpointConfigs and TrainingJobs * Dropped extraneous pass statement. Co-authored-by: Joseph Weitekamp <jweite@amazon.com>
10 lines
205 B
Python
10 lines
205 B
Python
from __future__ import unicode_literals
|
|
from .responses import SageMakerResponse
|
|
|
|
url_bases = [
|
|
"https?://api.sagemaker.(.+).amazonaws.com",
|
|
]
|
|
|
|
url_paths = {
|
|
"{0}/$": SageMakerResponse.dispatch,
|
|
}
|