Questions tagged [aws-sdk-cpp]

123 questions
0
votes
1 answer

DescribeStreamOutcome reported as "incomplete type"

I cloned aws-sdk-cpp from github and I managed to build it without problems (tests passed as well). I did not do "make install". I wanted to compile the dynamodbstreams part of the SDK exclusively, so I added -DBUILD_ONLY="dynamodbstreams" to the…
0
votes
1 answer

AWS SDK Usage using XCode

I am a new user of AWS-SDK for C++. I have a question regarding using it through Xcode. I was able to successfully build the AWS-SDK-CPP source and install them. I have 2 folders in my install path: an include directory and a lib directory filled…
0
votes
1 answer

Build macOS C++ Command Line App With aws-sdk-c++

I'm trying to understand the workflow for including the aws-sdk-c++ in a small example command line app in Xcode 8.3.3 (8E3004b) on macOS 10.12.6 (16G29). I've followed the directions posted here, and I can cmake, make, and make install fine. But,…
Jon Buys
  • 507
  • 5
  • 15
0
votes
1 answer

AWS-SDK-CPP: Transfer Manager file download crashes

The following code written in C++ on Visual Studio 2015 crashes. I am using v 1.1.1 for AWSSDKCPP-Trasnfer through NuGet. I could not find any sample code over the net or proper documentation for using transfer manager with C++ SDK. If there is a…
bawejakunal
  • 1,678
  • 2
  • 25
  • 54
0
votes
2 answers

AWS CPP SDK: Pass AWSCredentials to S3Client

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…
bawejakunal
  • 1,678
  • 2
  • 25
  • 54
0
votes
1 answer

Does AWS SDK for C++ work with Embarcadero C++ builder?

I am looking at developing some applications that utilise AWS services and for this purpose I plan to use AWS SDK for C++. The documentation does mention support for Visual Studio 2013 or later, Clang 3.3 or later..etc. As the development…
Sam.
  • 31
  • 2
0
votes
1 answer

AWS C++ SDK and MSVC2015: How to determine which static libs should be added?

I'm trying to build simple programm with AWS C++ SDK and MSVC2015: #include #include int main() { Aws::SDKOptions options; Aws::InitAPI(options); { std::cout << "success\n"; } …
Dmitry J
  • 867
  • 7
  • 20
0
votes
1 answer

C++ SDK for MTurk GetAccountBalance API call

I'm a little new to C++ and haven't used SDKs at all. I'm trying to use C++ in Visual Studio 2013 recreate the sample API call provided on the developer page of the MTurk requester site that should return the account balance from the sandbox. Here's…
Grace Yang
  • 15
  • 5
0
votes
1 answer

AWS SDK C++: Some S3 Integration tests fail

What should I do if some S3 integration tests fail? Could find any helpful solution on the Internet. Only -DBUILD_ONLY="s3" compilation parameter was used. The repo os on 1.0.99 tag. Here is the log of…
0
votes
0 answers

Unable to connect to endpoint using AWS SDK C++ S3 PutObjectRequest from EC2

I have a custom nginx module that in some proxy situations backs-up the proxied file to S3. The following works as expected upon my development machine (macOS Sierra): Aws::Client::ClientConfiguration config; auto s3_client =…
0
votes
1 answer

How to link libcurl, libssl, uuid libs statically?

Running this command: cmake -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTING=OFF -DBUILD_ONLY="s3" -DFORCE_SHARED_CRT=OFF -DBUILD_SHARED_LIBS=OFF always links to shared libcurl, ssl libraries as you can see from (truncated) CMAKE output: --…
cosmosb
  • 325
  • 2
  • 4
  • 7
0
votes
1 answer

Unresolved symbol when building AWS CPP SDK

I am trying to build AWS CPP SDK on Linux but the build fails with the following error (resolved symbol_: Can anyone shed some light on this error? ( I use devtoolset-6 gcc 6.3.1 for STL library support and clang 3.8.)…
Herriman
  • 21
  • 3
0
votes
2 answers

Linking with OpenSSL, libcurl, and zlb in AWS CPP SDK

I am trying to build AWS-CPP SDK on Linux and Windows. It has dependency of OpenSSL, zlib, and libucurl. Although these packages are available on Linux, they are not on Windows. How do I specify the locations of these packages' header files and…
Herriman
  • 21
  • 3
-1
votes
0 answers

How to init aws-sdk-cpp while using ceph

i am trying to use the aws-sdk-cpp library with a ceph endpoint. I have tested my ceph enpoint using the s5cmd toll and it works. However, i see a lot of errors being printed when Aws::InitAPI(aws_options_); It seems to be trying to contact a…
Max G
  • 1
-1
votes
1 answer

terminate called after throwing an instance of 'std::bad_alloc' Linux with AWS-SDK

I am using aws sdk for linux to transfer file to s3. I have compiled the shared library of aws sdk. Transfer of file fails with bad alloc error so thought to explore the example given by aws-sdk. I am trying to run the example to list the bucket on…
Abhishekh
  • 9
  • 3
1 2 3
8
9