Currently, I am using the library in the following way: AWS.Client.create(id, key, token, region)
, then I make requests to AWS using this client. However, I do not want to make requests directly to AWS locally. In this case, I want to have a local MinIO instance to test my app.
How can I configure (if possible) the aws-elixir
to make requests to localhost:9000
? If there is a way to do this using just configurations like config :aws, :endpoint, "localhost:9000"
, that would be amazing.