Request/Response type changes #3154
jdisanti
announced in
Change Log
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the previous release, the HTTP request type was changed. This release moves the request type added by that release into
aws_smithy_runtime_api::http
, and also adds a new response type with similar changes:Response
, useinto_http02x()
http::Response
can be converted to a SmithyResponse
using itsTryFrom
implementationInterceptorContext
is nowHttpResponse
instead ofhttp::Response<SdkBody>
Request
type before deserialization, so requests with any header that has invalid UTF-8 (even if that header is unused) will be rejected. Previously, rejection occurred when the header value was read during deserialization.Beta Was this translation helpful? Give feedback.
All reactions