65 lines
1.6 KiB
C++
65 lines
1.6 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/clouddirectory/model/UpdateLinkAttributesRequest.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;
|
|||
|
|
|
|||
|
|
UpdateLinkAttributesRequest::UpdateLinkAttributesRequest() :
|
|||
|
|
m_directoryArnHasBeenSet(false),
|
|||
|
|
m_typedLinkSpecifierHasBeenSet(false),
|
|||
|
|
m_attributeUpdatesHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::String UpdateLinkAttributesRequest::SerializePayload() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_typedLinkSpecifierHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("TypedLinkSpecifier", m_typedLinkSpecifier.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_attributeUpdatesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> attributeUpdatesJsonList(m_attributeUpdates.size());
|
|||
|
|
for(unsigned attributeUpdatesIndex = 0; attributeUpdatesIndex < attributeUpdatesJsonList.GetLength(); ++attributeUpdatesIndex)
|
|||
|
|
{
|
|||
|
|
attributeUpdatesJsonList[attributeUpdatesIndex].AsObject(m_attributeUpdates[attributeUpdatesIndex].Jsonize());
|
|||
|
|
}
|
|||
|
|
payload.WithArray("AttributeUpdates", std::move(attributeUpdatesJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload.View().WriteReadable();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection UpdateLinkAttributesRequest::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("");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return headers;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|