/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include using namespace Aws::CloudDirectory::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; GetLinkAttributesRequest::GetLinkAttributesRequest() : m_directoryArnHasBeenSet(false), m_typedLinkSpecifierHasBeenSet(false), m_attributeNamesHasBeenSet(false), m_consistencyLevel(ConsistencyLevel::NOT_SET), m_consistencyLevelHasBeenSet(false) { } Aws::String GetLinkAttributesRequest::SerializePayload() const { JsonValue payload; if(m_typedLinkSpecifierHasBeenSet) { payload.WithObject("TypedLinkSpecifier", m_typedLinkSpecifier.Jsonize()); } if(m_attributeNamesHasBeenSet) { Aws::Utils::Array attributeNamesJsonList(m_attributeNames.size()); for(unsigned attributeNamesIndex = 0; attributeNamesIndex < attributeNamesJsonList.GetLength(); ++attributeNamesIndex) { attributeNamesJsonList[attributeNamesIndex].AsString(m_attributeNames[attributeNamesIndex]); } payload.WithArray("AttributeNames", std::move(attributeNamesJsonList)); } if(m_consistencyLevelHasBeenSet) { payload.WithString("ConsistencyLevel", ConsistencyLevelMapper::GetNameForConsistencyLevel(m_consistencyLevel)); } return payload.View().WriteReadable(); } Aws::Http::HeaderValueCollection GetLinkAttributesRequest::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; }