66//
77
88import class Smithy. Context
9- import class SmithyHTTPAPI. SdkHttpRequest
10- import class SmithyHTTPAPI. HttpResponse
9+ import class SmithyHTTPAPI. HTTPRequest
10+ import class SmithyHTTPAPI. HTTPResponse
1111
1212/// Reacts to the handler's response returned by the recipient of the request
1313/// message. Deserializes the response into a structured type or error above
@@ -18,16 +18,16 @@ import class SmithyHTTPAPI.HttpResponse
1818/// Takes Request, and returns result or error.
1919///
2020/// Receives raw response, or error from underlying handler.
21- public typealias DeserializeStep < OperationStackOutput> = MiddlewareStep < SdkHttpRequest ,
21+ public typealias DeserializeStep < OperationStackOutput> = MiddlewareStep < HTTPRequest ,
2222 OperationOutput < OperationStackOutput > >
2323
2424public let DeserializeStepId = " Deserialize "
2525
2626public struct DeserializeStepHandler < OperationStackOutput, H: Handler > : Handler
27- where H. Input == SdkHttpRequest ,
27+ where H. Input == HTTPRequest ,
2828 H. Output == OperationOutput < OperationStackOutput > {
2929
30- public typealias Input = SdkHttpRequest
30+ public typealias Input = HTTPRequest
3131
3232 public typealias Output = OperationOutput < OperationStackOutput >
3333
@@ -43,10 +43,10 @@ public struct DeserializeStepHandler<OperationStackOutput, H: Handler>: Handler
4343}
4444
4545public struct OperationOutput < Output> {
46- public var httpResponse : HttpResponse
46+ public var httpResponse : HTTPResponse
4747 public var output : Output ?
4848
49- public init ( httpResponse: HttpResponse , output: Output ? = nil ) {
49+ public init ( httpResponse: HTTPResponse , output: Output ? = nil ) {
5050 self . httpResponse = httpResponse
5151 self . output = output
5252 }
0 commit comments