/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace RDS { namespace Model { class DeleteDBProxyEndpointResult { public: AWS_RDS_API DeleteDBProxyEndpointResult(); AWS_RDS_API DeleteDBProxyEndpointResult(const Aws::AmazonWebServiceResult& result); AWS_RDS_API DeleteDBProxyEndpointResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The data structure representing the details of the DB proxy endpoint that you * delete.

*/ inline const DBProxyEndpoint& GetDBProxyEndpoint() const{ return m_dBProxyEndpoint; } /** *

The data structure representing the details of the DB proxy endpoint that you * delete.

*/ inline void SetDBProxyEndpoint(const DBProxyEndpoint& value) { m_dBProxyEndpoint = value; } /** *

The data structure representing the details of the DB proxy endpoint that you * delete.

*/ inline void SetDBProxyEndpoint(DBProxyEndpoint&& value) { m_dBProxyEndpoint = std::move(value); } /** *

The data structure representing the details of the DB proxy endpoint that you * delete.

*/ inline DeleteDBProxyEndpointResult& WithDBProxyEndpoint(const DBProxyEndpoint& value) { SetDBProxyEndpoint(value); return *this;} /** *

The data structure representing the details of the DB proxy endpoint that you * delete.

*/ inline DeleteDBProxyEndpointResult& WithDBProxyEndpoint(DBProxyEndpoint&& value) { SetDBProxyEndpoint(std::move(value)); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline DeleteDBProxyEndpointResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline DeleteDBProxyEndpointResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: DBProxyEndpoint m_dBProxyEndpoint; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace RDS } // namespace Aws