79 lines
1.9 KiB
C++
79 lines
1.9 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/clouddirectory/model/GetObjectAttributesRequest.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::CloudDirectory::Model;
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
GetObjectAttributesRequest::GetObjectAttributesRequest() :
|
|||
|
|
m_directoryArnHasBeenSet(false),
|
|||
|
|
m_objectReferenceHasBeenSet(false),
|
|||
|
|
m_consistencyLevel(ConsistencyLevel::NOT_SET),
|
|||
|
|
m_consistencyLevelHasBeenSet(false),
|
|||
|
|
m_schemaFacetHasBeenSet(false),
|
|||
|
|
m_attributeNamesHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::String GetObjectAttributesRequest::SerializePayload() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_objectReferenceHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("ObjectReference", m_objectReference.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_schemaFacetHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("SchemaFacet", m_schemaFacet.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_attributeNamesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> attributeNamesJsonList(m_attributeNames.size());
|
|||
|
|
for(unsigned attributeNamesIndex = 0; attributeNamesIndex < attributeNamesJsonList.GetLength(); ++attributeNamesIndex)
|
|||
|
|
{
|
|||
|
|
attributeNamesJsonList[attributeNamesIndex].AsString(m_attributeNames[attributeNamesIndex]);
|
|||
|
|
}
|
|||
|
|
payload.WithArray("AttributeNames", std::move(attributeNamesJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload.View().WriteReadable();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetObjectAttributesRequest::GetRequestSpecificHeaders() const
|
|||
|
|
{
|
|||
|
|
Aws::Http::HeaderValueCollection headers;
|
|||
|
|
Aws::StringStream ss;
|
|||
|
|
if(m_directoryArnHasBeenSet)
|
|||
|
|
{
|
|||
|
|
ss << m_directoryArn;
|
|||
|
|
headers.emplace("x-amz-data-partition", ss.str());
|
|||
|
|
ss.str("");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_consistencyLevelHasBeenSet)
|
|||
|
|
{
|
|||
|
|
headers.emplace("x-amz-consistency-level", ConsistencyLevelMapper::GetNameForConsistencyLevel(m_consistencyLevel));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return headers;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|