This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-s3/source/model/RestoreObjectResult.cpp

54 lines
1.5 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/s3/model/RestoreObjectResult.h>
#include <aws/core/utils/xml/XmlSerializer.h>
#include <aws/core/AmazonWebServiceResult.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <utility>
using namespace Aws::S3::Model;
using namespace Aws::Utils::Xml;
using namespace Aws::Utils;
using namespace Aws;
RestoreObjectResult::RestoreObjectResult() :
m_requestCharged(RequestCharged::NOT_SET)
{
}
RestoreObjectResult::RestoreObjectResult(const Aws::AmazonWebServiceResult<XmlDocument>& result) :
m_requestCharged(RequestCharged::NOT_SET)
{
*this = result;
}
RestoreObjectResult& RestoreObjectResult::operator =(const Aws::AmazonWebServiceResult<XmlDocument>& result)
{
const XmlDocument& xmlDocument = result.GetPayload();
XmlNode resultNode = xmlDocument.GetRootElement();
if(!resultNode.IsNull())
{
}
const auto& headers = result.GetHeaderValueCollection();
const auto& requestChargedIter = headers.find("x-amz-request-charged");
if(requestChargedIter != headers.end())
{
m_requestCharged = RequestChargedMapper::GetRequestChargedForName(requestChargedIter->second);
}
const auto& restoreOutputPathIter = headers.find("x-amz-restore-output-path");
if(restoreOutputPathIter != headers.end())
{
m_restoreOutputPath = restoreOutputPathIter->second;
}
return *this;
}