static const char* AWS_ACCESS_KEY_ID = "XXXXXXXXXXXXX";
static const char* AWS_SECRET_ACCESS_KEY = "YYYYYYYYYY";
AWSCredentials credentials(AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY);
The above code gives me an error of incomplete type is not allowed
in visual studio and results ina build error as use of undefined type 'Aws::Auth::AWSCredentials'
Please point me to correct way to construct a AWSCredentials object ?