/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The name of the Amazon Redshift event notification subscription to be * deleted.
*/ inline const Aws::String& GetSubscriptionName() const{ return m_subscriptionName; } /** *The name of the Amazon Redshift event notification subscription to be * deleted.
*/ inline bool SubscriptionNameHasBeenSet() const { return m_subscriptionNameHasBeenSet; } /** *The name of the Amazon Redshift event notification subscription to be * deleted.
*/ inline void SetSubscriptionName(const Aws::String& value) { m_subscriptionNameHasBeenSet = true; m_subscriptionName = value; } /** *The name of the Amazon Redshift event notification subscription to be * deleted.
*/ inline void SetSubscriptionName(Aws::String&& value) { m_subscriptionNameHasBeenSet = true; m_subscriptionName = std::move(value); } /** *The name of the Amazon Redshift event notification subscription to be * deleted.
*/ inline void SetSubscriptionName(const char* value) { m_subscriptionNameHasBeenSet = true; m_subscriptionName.assign(value); } /** *The name of the Amazon Redshift event notification subscription to be * deleted.
*/ inline DeleteEventSubscriptionRequest& WithSubscriptionName(const Aws::String& value) { SetSubscriptionName(value); return *this;} /** *The name of the Amazon Redshift event notification subscription to be * deleted.
*/ inline DeleteEventSubscriptionRequest& WithSubscriptionName(Aws::String&& value) { SetSubscriptionName(std::move(value)); return *this;} /** *The name of the Amazon Redshift event notification subscription to be * deleted.
*/ inline DeleteEventSubscriptionRequest& WithSubscriptionName(const char* value) { SetSubscriptionName(value); return *this;} private: Aws::String m_subscriptionName; bool m_subscriptionNameHasBeenSet = false; }; } // namespace Model } // namespace Redshift } // namespace Aws