It took 45 minutes to create my endpoint from the stored endpoint configuration. (I tested it and it works too). This is the first time that I've used boto3 to do this, whereas previously I just used the Sagemaker web GUI to create an endpoint from endpoint configuration. Suggestions to my code are appreciated:
import boto3
sagemaker_client = boto3.client('sagemaker')
response = sagemaker_client.create_endpoint(
EndpointName='sagemaker-tensorflow-x',
EndpointConfigName='sagemaker-tensorflow-x'
)
Note: I've replaced the last part of my endpoint name with x.
