/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Request of DeleteNotification See Also:
AWS
* API Reference
The accountId
that is associated with the budget whose
* notification you want to delete.
The accountId
that is associated with the budget whose
* notification you want to delete.
The accountId
that is associated with the budget whose
* notification you want to delete.
The accountId
that is associated with the budget whose
* notification you want to delete.
The accountId
that is associated with the budget whose
* notification you want to delete.
The accountId
that is associated with the budget whose
* notification you want to delete.
The accountId
that is associated with the budget whose
* notification you want to delete.
The accountId
that is associated with the budget whose
* notification you want to delete.
The name of the budget whose notification you want to delete.
*/ inline const Aws::String& GetBudgetName() const{ return m_budgetName; } /** *The name of the budget whose notification you want to delete.
*/ inline bool BudgetNameHasBeenSet() const { return m_budgetNameHasBeenSet; } /** *The name of the budget whose notification you want to delete.
*/ inline void SetBudgetName(const Aws::String& value) { m_budgetNameHasBeenSet = true; m_budgetName = value; } /** *The name of the budget whose notification you want to delete.
*/ inline void SetBudgetName(Aws::String&& value) { m_budgetNameHasBeenSet = true; m_budgetName = std::move(value); } /** *The name of the budget whose notification you want to delete.
*/ inline void SetBudgetName(const char* value) { m_budgetNameHasBeenSet = true; m_budgetName.assign(value); } /** *The name of the budget whose notification you want to delete.
*/ inline DeleteNotificationRequest& WithBudgetName(const Aws::String& value) { SetBudgetName(value); return *this;} /** *The name of the budget whose notification you want to delete.
*/ inline DeleteNotificationRequest& WithBudgetName(Aws::String&& value) { SetBudgetName(std::move(value)); return *this;} /** *The name of the budget whose notification you want to delete.
*/ inline DeleteNotificationRequest& WithBudgetName(const char* value) { SetBudgetName(value); return *this;} /** *The notification that you want to delete.
*/ inline const Notification& GetNotification() const{ return m_notification; } /** *The notification that you want to delete.
*/ inline bool NotificationHasBeenSet() const { return m_notificationHasBeenSet; } /** *The notification that you want to delete.
*/ inline void SetNotification(const Notification& value) { m_notificationHasBeenSet = true; m_notification = value; } /** *The notification that you want to delete.
*/ inline void SetNotification(Notification&& value) { m_notificationHasBeenSet = true; m_notification = std::move(value); } /** *The notification that you want to delete.
*/ inline DeleteNotificationRequest& WithNotification(const Notification& value) { SetNotification(value); return *this;} /** *The notification that you want to delete.
*/ inline DeleteNotificationRequest& WithNotification(Notification&& value) { SetNotification(std::move(value)); return *this;} private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::String m_budgetName; bool m_budgetNameHasBeenSet = false; Notification m_notification; bool m_notificationHasBeenSet = false; }; } // namespace Model } // namespace Budgets } // namespace Aws