aws-sdk-cpp
aws-sdk-cpp copied to clipboard
AWS SDK for C++
### Describe the bug Building the SDK with the CUSTOM_MEMORY_MANAGEMENT set causes issues with the dll with both the S3 and S3-CRT packages. ### Expected Behavior Package should build and...
### Describe the bug I have a test suite where each test calls `Aws::InitAPI`, then executes a test and finally calls `Aws::ShutdownAPI`. The second test then crashes in `Aws::InitAPI`. This...
### Describe the bug Ubuntu 22.04, GCC 11.2, aws-sdk-cpp 1.9.22 (from vcpkg) This code (excerpt); ```cpp Aws::S3::Model::CopyObjectRequest copyObjectRequest; auto outcome = s3Client.CopyObject(copyObjectRequest .WithCopySource("558007041168/Wedding/lenovelle.jpg?versionId=zm1uOxum.DfrtaVE9opSLgR21orgDN0L") .WithBucket("558007041168") .WithKey("Wedding/lenovelle1.jpg")); ``` fails with exception `NoSuchKey`...
### Describe the bug We have repeatedly experienced problems with `S3CrtClient` programs that were hanging due to stuck/low-progress TCP connections. These can be avoided by TCP keep-alive probes and TCP...
### Describe the bug CPP_STANDARD macro does not perform its function for v1.9.350 ### Expected Behavior C++ Language Standard property for all projects should be set to ISO C++17 Standard...
aws-sdk-cpp is available as a port in [vcpkg](https://github.com/microsoft/vcpkg), a C++ library manager that simplifies installation for aws-sdk-cpp and other project dependencies. Documenting the install process here will help users get...
If `PutObjectAsync` is passed an input stream which is in a bad state (failbit or badbit set), the `aws-c-s3` meta request fails with arcane errors, since the Content-Length is computed...
### Describe the bug Hi, we are trying to download a file from S3 using `GetObjectAsync` with `Aws::FStream` as a `ResponseStreamFactory` so it downloads it directly in a file locally....
*Issue #, if available:* *Description of changes:* This PR adds support for building aws-sdk-cpp with the MinGW toolchain on Windows. Needs https://github.com/awslabs/aws-c-common/pull/604 in order to work. The main changes are...
### Describe the bug Here is the code I'm using inside an AWS Lambda, which hangs and times out when I request an S3 key that does not exist in...