/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input to
* RemoveSourceIdentifierFromSubscription.See Also:
AWS
* API Reference
The name of the Amazon DocumentDB event notification subscription that you * want to remove a source identifier from.
*/ inline const Aws::String& GetSubscriptionName() const{ return m_subscriptionName; } /** *The name of the Amazon DocumentDB event notification subscription that you * want to remove a source identifier from.
*/ inline bool SubscriptionNameHasBeenSet() const { return m_subscriptionNameHasBeenSet; } /** *The name of the Amazon DocumentDB event notification subscription that you * want to remove a source identifier from.
*/ inline void SetSubscriptionName(const Aws::String& value) { m_subscriptionNameHasBeenSet = true; m_subscriptionName = value; } /** *The name of the Amazon DocumentDB event notification subscription that you * want to remove a source identifier from.
*/ inline void SetSubscriptionName(Aws::String&& value) { m_subscriptionNameHasBeenSet = true; m_subscriptionName = std::move(value); } /** *The name of the Amazon DocumentDB event notification subscription that you * want to remove a source identifier from.
*/ inline void SetSubscriptionName(const char* value) { m_subscriptionNameHasBeenSet = true; m_subscriptionName.assign(value); } /** *The name of the Amazon DocumentDB event notification subscription that you * want to remove a source identifier from.
*/ inline RemoveSourceIdentifierFromSubscriptionRequest& WithSubscriptionName(const Aws::String& value) { SetSubscriptionName(value); return *this;} /** *The name of the Amazon DocumentDB event notification subscription that you * want to remove a source identifier from.
*/ inline RemoveSourceIdentifierFromSubscriptionRequest& WithSubscriptionName(Aws::String&& value) { SetSubscriptionName(std::move(value)); return *this;} /** *The name of the Amazon DocumentDB event notification subscription that you * want to remove a source identifier from.
*/ inline RemoveSourceIdentifierFromSubscriptionRequest& WithSubscriptionName(const char* value) { SetSubscriptionName(value); return *this;} /** *The source identifier to be removed from the subscription, such as the * instance identifier for an instance, or the name of a security group.
*/ inline const Aws::String& GetSourceIdentifier() const{ return m_sourceIdentifier; } /** *The source identifier to be removed from the subscription, such as the * instance identifier for an instance, or the name of a security group.
*/ inline bool SourceIdentifierHasBeenSet() const { return m_sourceIdentifierHasBeenSet; } /** *The source identifier to be removed from the subscription, such as the * instance identifier for an instance, or the name of a security group.
*/ inline void SetSourceIdentifier(const Aws::String& value) { m_sourceIdentifierHasBeenSet = true; m_sourceIdentifier = value; } /** *The source identifier to be removed from the subscription, such as the * instance identifier for an instance, or the name of a security group.
*/ inline void SetSourceIdentifier(Aws::String&& value) { m_sourceIdentifierHasBeenSet = true; m_sourceIdentifier = std::move(value); } /** *The source identifier to be removed from the subscription, such as the * instance identifier for an instance, or the name of a security group.
*/ inline void SetSourceIdentifier(const char* value) { m_sourceIdentifierHasBeenSet = true; m_sourceIdentifier.assign(value); } /** *The source identifier to be removed from the subscription, such as the * instance identifier for an instance, or the name of a security group.
*/ inline RemoveSourceIdentifierFromSubscriptionRequest& WithSourceIdentifier(const Aws::String& value) { SetSourceIdentifier(value); return *this;} /** *The source identifier to be removed from the subscription, such as the * instance identifier for an instance, or the name of a security group.
*/ inline RemoveSourceIdentifierFromSubscriptionRequest& WithSourceIdentifier(Aws::String&& value) { SetSourceIdentifier(std::move(value)); return *this;} /** *The source identifier to be removed from the subscription, such as the * instance identifier for an instance, or the name of a security group.
*/ inline RemoveSourceIdentifierFromSubscriptionRequest& WithSourceIdentifier(const char* value) { SetSourceIdentifier(value); return *this;} private: Aws::String m_subscriptionName; bool m_subscriptionNameHasBeenSet = false; Aws::String m_sourceIdentifier; bool m_sourceIdentifierHasBeenSet = false; }; } // namespace Model } // namespace DocDB } // namespace Aws