Botocore.exceptions.endpointconnectionerror: Could Not Connect To The Endpoint
I'm running Ubuntu 12.04, Python 2.7.3 and trying to run chalice However, when I run chalice deploy I get back: botocore.exceptions.EndpointConnectionError: Could not connect t
Solution 1:
As per your config you have setup the region to region = us-west-1
and you are trying to access a Lambda function in region us-east-1.
Change that region to us-east-1 in the config and then give it a try it will work.
Post a Comment for "Botocore.exceptions.endpointconnectionerror: Could Not Connect To The Endpoint"