set AWS S3 config region in C++

0

I realized that when I have a .aws folder with config file inside it, AWS responds about 100 times faster (to any upload, download, or query) than when config file does not exist.

I do not want to have aws folder on my system, so I used the following code to set the config region. However, it is still not as fast as when config file existed.

Aws::Client::ClientConfiguration clientConfig;
clientConfig.region = "us-west-2";
Aws::Auth::AWSCredentials credentials("abcd", "abcd");
Aws::S3::S3Client s3_client(credentials, clientConfig);

What else needs to be set in the code to do what config file was doing?

asked a year ago93 views
No Answers

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions