/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace RDS { namespace Model { /** */ class DeleteDBProxyEndpointRequest : public RDSRequest { public: AWS_RDS_API DeleteDBProxyEndpointRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DeleteDBProxyEndpoint"; } AWS_RDS_API Aws::String SerializePayload() const override; protected: AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The name of the DB proxy endpoint to delete.

*/ inline const Aws::String& GetDBProxyEndpointName() const{ return m_dBProxyEndpointName; } /** *

The name of the DB proxy endpoint to delete.

*/ inline bool DBProxyEndpointNameHasBeenSet() const { return m_dBProxyEndpointNameHasBeenSet; } /** *

The name of the DB proxy endpoint to delete.

*/ inline void SetDBProxyEndpointName(const Aws::String& value) { m_dBProxyEndpointNameHasBeenSet = true; m_dBProxyEndpointName = value; } /** *

The name of the DB proxy endpoint to delete.

*/ inline void SetDBProxyEndpointName(Aws::String&& value) { m_dBProxyEndpointNameHasBeenSet = true; m_dBProxyEndpointName = std::move(value); } /** *

The name of the DB proxy endpoint to delete.

*/ inline void SetDBProxyEndpointName(const char* value) { m_dBProxyEndpointNameHasBeenSet = true; m_dBProxyEndpointName.assign(value); } /** *

The name of the DB proxy endpoint to delete.

*/ inline DeleteDBProxyEndpointRequest& WithDBProxyEndpointName(const Aws::String& value) { SetDBProxyEndpointName(value); return *this;} /** *

The name of the DB proxy endpoint to delete.

*/ inline DeleteDBProxyEndpointRequest& WithDBProxyEndpointName(Aws::String&& value) { SetDBProxyEndpointName(std::move(value)); return *this;} /** *

The name of the DB proxy endpoint to delete.

*/ inline DeleteDBProxyEndpointRequest& WithDBProxyEndpointName(const char* value) { SetDBProxyEndpointName(value); return *this;} private: Aws::String m_dBProxyEndpointName; bool m_dBProxyEndpointNameHasBeenSet = false; }; } // namespace Model } // namespace RDS } // namespace Aws