Aws::Client::ClientConfiguration default construction is very slow #2398
Answered
by
jmklix
Gribouillages
asked this question in
Q&A
-
When I use
|
Beta Was this translation helpful? Give feedback.
Answered by
jmklix
Mar 21, 2023
Replies: 2 comments 4 replies
-
Can you make sure you are using the sdk correctly by adding the sdk call in curly brackets: #include <aws/core/Aws.h>
int main(int argc, char** argv)
{
Aws::SDKOptions options;
Aws::InitAPI(options);
{
// make your SDK calls here.
}
Aws::ShutdownAPI(options);
return 0;
} |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
Gribouillages
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you make sure you are using the sdk correctly by adding the sdk call in curly brackets: