/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::drs::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; CreateExtendedSourceServerRequest::CreateExtendedSourceServerRequest() : m_sourceServerArnHasBeenSet(false), m_tagsHasBeenSet(false) { } Aws::String CreateExtendedSourceServerRequest::SerializePayload() const { JsonValue payload; if(m_sourceServerArnHasBeenSet) { payload.WithString("sourceServerArn", m_sourceServerArn); } if(m_tagsHasBeenSet) { JsonValue tagsJsonMap; for(auto& tagsItem : m_tags) { tagsJsonMap.WithString(tagsItem.first, tagsItem.second); } payload.WithObject("tags", std::move(tagsJsonMap)); } return payload.View().WriteReadable(); }