Soto icon

Soto

#credentialproviders

1 December 2020

The AWSClient is the core of Soto. This is the object that manages your communication with AWS. It manages credential acquisition, takes your request, encodes it, signs it, sends it to AWS and then decodes the response for you. In most situations your application should only require…

1 December 2020

Before using Soto, you will need AWS credentials to sign all your requests. The main client object, AWSClient, accepts a credentialProvider parameter in its init. With this you can specify how the client should find AWS credentials. The default if you don't…