Skip to content

Commit 04d3a32

Browse files
committed
Updates advanced topics documentation.
1 parent be902c6 commit 04d3a32

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Docs/Advanced_topics.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ __This section includes the following topics:__
66
* [Error Handling](#Error-Handling)
77
* [Provided Utilities](#provided-utilities)
88
* [Controlling IOStreams used by the HttpClient and the AWSClient](#Controlling-IOStreams-used-by-the-HttpClient-and-the-AWSClient)
9+
* [Known Limitations](#Known-Limitations)
910

1011

1112

@@ -121,3 +122,9 @@ getObjectRequest.SetResponseStreamFactory([](){ return Aws::New<Aws::FStream>( A
121122

122123
auto getObjectOutcome = s3Client->GetObject(getObjectRequest);
123124
```
125+
126+
### Known Limitations
127+
128+
#### Aws::StringStream max size
129+
130+
[`Aws::StringStream`](https://github.com/aws/aws-sdk-cpp/blob/main/aws-cpp-sdk-core/include/aws/core/utils/memory/stl/AWSStringStream.h) is an alias to [`std::basic_stringstream`](https://en.cppreference.com/w/cpp/io/basic_stringstream) which effectively stores an instance of std::basic_string and performs the input and output operations on it. That being known the max size limitation of a string stream is the maximum size for a string in that toolchain [`std::basic_string::max_size`](https://en.cppreference.com/w/cpp/string/basic_string/max_size).

0 commit comments

Comments
 (0)