You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Docs/Advanced_topics.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ __This section includes the following topics:__
6
6
*[Error Handling](#Error-Handling)
7
7
*[Provided Utilities](#provided-utilities)
8
8
*[Controlling IOStreams used by the HttpClient and the AWSClient](#Controlling-IOStreams-used-by-the-HttpClient-and-the-AWSClient)
9
+
*[Known Limitations](#Known-Limitations)
9
10
10
11
11
12
@@ -121,3 +122,9 @@ getObjectRequest.SetResponseStreamFactory([](){ return Aws::New<Aws::FStream>( A
121
122
122
123
auto getObjectOutcome = s3Client->GetObject(getObjectRequest);
123
124
```
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