211 lines
7.2 KiB
C
211 lines
7.2 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/budgets/Budgets_EXPORTS.h>
|
|||
|
|
#include <aws/budgets/BudgetsRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/budgets/model/Notification.h>
|
|||
|
|
#include <aws/budgets/model/Subscriber.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Budgets
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p> Request of DeleteSubscriber </p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/budgets-2016-10-20/DeleteSubscriberRequest">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_BUDGETS_API DeleteSubscriberRequest : public BudgetsRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
DeleteSubscriberRequest();
|
|||
|
|
|
|||
|
|
// 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 "DeleteSubscriber"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>accountId</code> that is associated with the budget whose
|
|||
|
|
* subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetAccountId() const{ return m_accountId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>accountId</code> that is associated with the budget whose
|
|||
|
|
* subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>accountId</code> that is associated with the budget whose
|
|||
|
|
* subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>accountId</code> that is associated with the budget whose
|
|||
|
|
* subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>accountId</code> that is associated with the budget whose
|
|||
|
|
* subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>accountId</code> that is associated with the budget whose
|
|||
|
|
* subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>accountId</code> that is associated with the budget whose
|
|||
|
|
* subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The <code>accountId</code> that is associated with the budget whose
|
|||
|
|
* subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the budget whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetBudgetName() const{ return m_budgetName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the budget whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool BudgetNameHasBeenSet() const { return m_budgetNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the budget whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetBudgetName(const Aws::String& value) { m_budgetNameHasBeenSet = true; m_budgetName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the budget whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetBudgetName(Aws::String&& value) { m_budgetNameHasBeenSet = true; m_budgetName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the budget whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetBudgetName(const char* value) { m_budgetNameHasBeenSet = true; m_budgetName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the budget whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithBudgetName(const Aws::String& value) { SetBudgetName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the budget whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithBudgetName(Aws::String&& value) { SetBudgetName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the budget whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithBudgetName(const char* value) { SetBudgetName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The notification whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Notification& GetNotification() const{ return m_notification; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The notification whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool NotificationHasBeenSet() const { return m_notificationHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The notification whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNotification(const Notification& value) { m_notificationHasBeenSet = true; m_notification = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The notification whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetNotification(Notification&& value) { m_notificationHasBeenSet = true; m_notification = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The notification whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithNotification(const Notification& value) { SetNotification(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The notification whose subscriber you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithNotification(Notification&& value) { SetNotification(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The subscriber that you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Subscriber& GetSubscriber() const{ return m_subscriber; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The subscriber that you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool SubscriberHasBeenSet() const { return m_subscriberHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The subscriber that you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSubscriber(const Subscriber& value) { m_subscriberHasBeenSet = true; m_subscriber = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The subscriber that you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSubscriber(Subscriber&& value) { m_subscriberHasBeenSet = true; m_subscriber = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The subscriber that you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithSubscriber(const Subscriber& value) { SetSubscriber(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The subscriber that you want to delete.</p>
|
|||
|
|
*/
|
|||
|
|
inline DeleteSubscriberRequest& WithSubscriber(Subscriber&& value) { SetSubscriber(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_accountId;
|
|||
|
|
bool m_accountIdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_budgetName;
|
|||
|
|
bool m_budgetNameHasBeenSet;
|
|||
|
|
|
|||
|
|
Notification m_notification;
|
|||
|
|
bool m_notificationHasBeenSet;
|
|||
|
|
|
|||
|
|
Subscriber m_subscriber;
|
|||
|
|
bool m_subscriberHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Budgets
|
|||
|
|
} // namespace Aws
|