Botocore previous versions documentation

Viewed 1635
2 Answers

You can access the previous version of documentation by replacing {version_number} with the version you want visit in the following URL. https://botocore.amazonaws.com/v1/documentation/api/{version_number}/index.html

For example, visit https://botocore.amazonaws.com/v1/documentation/api/1.10.50/index.html for version 1.10.50 documentation.

Please notice that however some older version of documentation is not available. I tried version 1.10.1 and no documentation is available.

PS: As of 2018-10-04, the link http://botocore.readthedocs.io/en/latest/ mentioned in the question is redirecting to https://botocore.amazonaws.com/v1/documentation/api/latest/index.html.

Related