/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Schemas::Model; using namespace Aws::Utils::Json; using namespace Aws::Utils; UpdateRegistryRequest::UpdateRegistryRequest() : m_descriptionHasBeenSet(false), m_registryNameHasBeenSet(false) { } Aws::String UpdateRegistryRequest::SerializePayload() const { JsonValue payload; if(m_descriptionHasBeenSet) { payload.WithString("Description", m_description); } return payload.View().WriteReadable(); }