68 lines
1.7 KiB
C++
68 lines
1.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/codeguruprofiler/model/GetProfileResult.h>
|
|
#include <aws/core/AmazonWebServiceResult.h>
|
|
#include <aws/core/utils/StringUtils.h>
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|
#include <aws/core/utils/HashingUtils.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::CodeGuruProfiler::Model;
|
|
using namespace Aws::Utils::Stream;
|
|
using namespace Aws::Utils;
|
|
using namespace Aws;
|
|
|
|
GetProfileResult::GetProfileResult()
|
|
{
|
|
}
|
|
|
|
GetProfileResult::GetProfileResult(GetProfileResult&& toMove) :
|
|
m_contentEncoding(std::move(toMove.m_contentEncoding)),
|
|
m_contentType(std::move(toMove.m_contentType)),
|
|
m_profile(std::move(toMove.m_profile))
|
|
{
|
|
}
|
|
|
|
GetProfileResult& GetProfileResult::operator=(GetProfileResult&& toMove)
|
|
{
|
|
if(this == &toMove)
|
|
{
|
|
return *this;
|
|
}
|
|
|
|
m_contentEncoding = std::move(toMove.m_contentEncoding);
|
|
m_contentType = std::move(toMove.m_contentType);
|
|
m_profile = std::move(toMove.m_profile);
|
|
|
|
return *this;
|
|
}
|
|
|
|
GetProfileResult::GetProfileResult(Aws::AmazonWebServiceResult<ResponseStream>&& result)
|
|
{
|
|
*this = std::move(result);
|
|
}
|
|
|
|
GetProfileResult& GetProfileResult::operator =(Aws::AmazonWebServiceResult<ResponseStream>&& result)
|
|
{
|
|
m_profile = result.TakeOwnershipOfPayload();
|
|
|
|
const auto& headers = result.GetHeaderValueCollection();
|
|
const auto& contentEncodingIter = headers.find("content-encoding");
|
|
if(contentEncodingIter != headers.end())
|
|
{
|
|
m_contentEncoding = contentEncodingIter->second;
|
|
}
|
|
|
|
const auto& contentTypeIter = headers.find("content-type");
|
|
if(contentTypeIter != headers.end())
|
|
{
|
|
m_contentType = contentTypeIter->second;
|
|
}
|
|
|
|
return *this;
|
|
}
|