/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::RDS::Model; using namespace Aws::Utils; DeleteDBProxyRequest::DeleteDBProxyRequest() : m_dBProxyNameHasBeenSet(false) { } Aws::String DeleteDBProxyRequest::SerializePayload() const { Aws::StringStream ss; ss << "Action=DeleteDBProxy&"; if(m_dBProxyNameHasBeenSet) { ss << "DBProxyName=" << StringUtils::URLEncode(m_dBProxyName.c_str()) << "&"; } ss << "Version=2014-10-31"; return ss.str(); } void DeleteDBProxyRequest::DumpBodyToUrl(Aws::Http::URI& uri ) const { uri.SetQueryString(SerializePayload()); }