class Aws::Plugins::StubResponses::Handler
def apply_stub(stub, response)
def apply_stub(stub, response) http_resp = response.context.http_response case when stub[:error] then signal_error(stub[:error], http_resp) when stub[:http] then signal_http(stub[:http], http_resp) when stub[:data] then response.data = stub[:data] end end