/** * 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 SNS { namespace Model { /** *

Input for DeleteEndpoint action.

See Also:

AWS * API Reference

*/ class DeleteEndpointRequest : public SNSRequest { public: AWS_SNS_API DeleteEndpointRequest(); // 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 "DeleteEndpoint"; } AWS_SNS_API Aws::String SerializePayload() const override; protected: AWS_SNS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

EndpointArn of endpoint to delete.

*/ inline const Aws::String& GetEndpointArn() const{ return m_endpointArn; } /** *

EndpointArn of endpoint to delete.

*/ inline bool EndpointArnHasBeenSet() const { return m_endpointArnHasBeenSet; } /** *

EndpointArn of endpoint to delete.

*/ inline void SetEndpointArn(const Aws::String& value) { m_endpointArnHasBeenSet = true; m_endpointArn = value; } /** *

EndpointArn of endpoint to delete.

*/ inline void SetEndpointArn(Aws::String&& value) { m_endpointArnHasBeenSet = true; m_endpointArn = std::move(value); } /** *

EndpointArn of endpoint to delete.

*/ inline void SetEndpointArn(const char* value) { m_endpointArnHasBeenSet = true; m_endpointArn.assign(value); } /** *

EndpointArn of endpoint to delete.

*/ inline DeleteEndpointRequest& WithEndpointArn(const Aws::String& value) { SetEndpointArn(value); return *this;} /** *

EndpointArn of endpoint to delete.

*/ inline DeleteEndpointRequest& WithEndpointArn(Aws::String&& value) { SetEndpointArn(std::move(value)); return *this;} /** *

EndpointArn of endpoint to delete.

*/ inline DeleteEndpointRequest& WithEndpointArn(const char* value) { SetEndpointArn(value); return *this;} private: Aws::String m_endpointArn; bool m_endpointArnHasBeenSet = false; }; } // namespace Model } // namespace SNS } // namespace Aws