/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Input for Unsubscribe action.See Also:
AWS
* API Reference
The ARN of the subscription to be deleted.
*/ inline const Aws::String& GetSubscriptionArn() const{ return m_subscriptionArn; } /** *The ARN of the subscription to be deleted.
*/ inline bool SubscriptionArnHasBeenSet() const { return m_subscriptionArnHasBeenSet; } /** *The ARN of the subscription to be deleted.
*/ inline void SetSubscriptionArn(const Aws::String& value) { m_subscriptionArnHasBeenSet = true; m_subscriptionArn = value; } /** *The ARN of the subscription to be deleted.
*/ inline void SetSubscriptionArn(Aws::String&& value) { m_subscriptionArnHasBeenSet = true; m_subscriptionArn = std::move(value); } /** *The ARN of the subscription to be deleted.
*/ inline void SetSubscriptionArn(const char* value) { m_subscriptionArnHasBeenSet = true; m_subscriptionArn.assign(value); } /** *The ARN of the subscription to be deleted.
*/ inline UnsubscribeRequest& WithSubscriptionArn(const Aws::String& value) { SetSubscriptionArn(value); return *this;} /** *The ARN of the subscription to be deleted.
*/ inline UnsubscribeRequest& WithSubscriptionArn(Aws::String&& value) { SetSubscriptionArn(std::move(value)); return *this;} /** *The ARN of the subscription to be deleted.
*/ inline UnsubscribeRequest& WithSubscriptionArn(const char* value) { SetSubscriptionArn(value); return *this;} private: Aws::String m_subscriptionArn; bool m_subscriptionArnHasBeenSet = false; }; } // namespace Model } // namespace SNS } // namespace Aws