/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include #include using namespace Aws::IoTDataPlane::Model; using namespace Aws::Utils::Stream; using namespace Aws::Utils; using namespace Aws; GetThingShadowResult::GetThingShadowResult() { } GetThingShadowResult::GetThingShadowResult(GetThingShadowResult&& toMove) : m_payload(std::move(toMove.m_payload)), m_requestId(std::move(toMove.m_requestId)) { } GetThingShadowResult& GetThingShadowResult::operator=(GetThingShadowResult&& toMove) { if(this == &toMove) { return *this; } m_payload = std::move(toMove.m_payload); m_requestId = std::move(toMove.m_requestId); return *this; } GetThingShadowResult::GetThingShadowResult(Aws::AmazonWebServiceResult&& result) { *this = std::move(result); } GetThingShadowResult& GetThingShadowResult::operator =(Aws::AmazonWebServiceResult&& result) { m_payload = result.TakeOwnershipOfPayload(); const auto& headers = result.GetHeaderValueCollection(); const auto& requestIdIter = headers.find("x-amzn-requestid"); if(requestIdIter != headers.end()) { m_requestId = requestIdIter->second; } return *this; }