2 Answers
- Newest
- Most votes
- Most comments
1
In boto3, when specifying endpoint_url, this url will be validated against a few rules. Code: https://github.com/boto/botocore/blob/9e9d4831d2f28a2a338406a8b16608976e034761/botocore/utils.py#L1230
Basically, the endpoint url need to follow
<scheme>://<netloc>/<path>?<query>#<fragment>
You are missing the scheme, i.e. http:// or https://
I tested locally in my computer, adding those schemes will see client created successfully.
