/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Request of DescribeSubscribersForNotification See Also:
AWS
* API Reference
The accountId
that is associated with the budget whose
* subscribers you want descriptions of.
The accountId
that is associated with the budget whose
* subscribers you want descriptions of.
The accountId
that is associated with the budget whose
* subscribers you want descriptions of.
The accountId
that is associated with the budget whose
* subscribers you want descriptions of.
The accountId
that is associated with the budget whose
* subscribers you want descriptions of.
The accountId
that is associated with the budget whose
* subscribers you want descriptions of.
The accountId
that is associated with the budget whose
* subscribers you want descriptions of.
The accountId
that is associated with the budget whose
* subscribers you want descriptions of.
The name of the budget whose subscribers you want descriptions of.
*/ inline const Aws::String& GetBudgetName() const{ return m_budgetName; } /** *The name of the budget whose subscribers you want descriptions of.
*/ inline bool BudgetNameHasBeenSet() const { return m_budgetNameHasBeenSet; } /** *The name of the budget whose subscribers you want descriptions of.
*/ inline void SetBudgetName(const Aws::String& value) { m_budgetNameHasBeenSet = true; m_budgetName = value; } /** *The name of the budget whose subscribers you want descriptions of.
*/ inline void SetBudgetName(Aws::String&& value) { m_budgetNameHasBeenSet = true; m_budgetName = std::move(value); } /** *The name of the budget whose subscribers you want descriptions of.
*/ inline void SetBudgetName(const char* value) { m_budgetNameHasBeenSet = true; m_budgetName.assign(value); } /** *The name of the budget whose subscribers you want descriptions of.
*/ inline DescribeSubscribersForNotificationRequest& WithBudgetName(const Aws::String& value) { SetBudgetName(value); return *this;} /** *The name of the budget whose subscribers you want descriptions of.
*/ inline DescribeSubscribersForNotificationRequest& WithBudgetName(Aws::String&& value) { SetBudgetName(std::move(value)); return *this;} /** *The name of the budget whose subscribers you want descriptions of.
*/ inline DescribeSubscribersForNotificationRequest& WithBudgetName(const char* value) { SetBudgetName(value); return *this;} /** *The notification whose subscribers you want to list.
*/ inline const Notification& GetNotification() const{ return m_notification; } /** *The notification whose subscribers you want to list.
*/ inline bool NotificationHasBeenSet() const { return m_notificationHasBeenSet; } /** *The notification whose subscribers you want to list.
*/ inline void SetNotification(const Notification& value) { m_notificationHasBeenSet = true; m_notification = value; } /** *The notification whose subscribers you want to list.
*/ inline void SetNotification(Notification&& value) { m_notificationHasBeenSet = true; m_notification = std::move(value); } /** *The notification whose subscribers you want to list.
*/ inline DescribeSubscribersForNotificationRequest& WithNotification(const Notification& value) { SetNotification(value); return *this;} /** *The notification whose subscribers you want to list.
*/ inline DescribeSubscribersForNotificationRequest& WithNotification(Notification&& value) { SetNotification(std::move(value)); return *this;} /** *An optional integer that represents how many entries a paginated response * contains. The maximum is 100.
*/ inline int GetMaxResults() const{ return m_maxResults; } /** *An optional integer that represents how many entries a paginated response * contains. The maximum is 100.
*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *An optional integer that represents how many entries a paginated response * contains. The maximum is 100.
*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *An optional integer that represents how many entries a paginated response * contains. The maximum is 100.
*/ inline DescribeSubscribersForNotificationRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *The pagination token that you include in your request to indicate the next * set of results that you want to retrieve.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *The pagination token that you include in your request to indicate the next * set of results that you want to retrieve.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *The pagination token that you include in your request to indicate the next * set of results that you want to retrieve.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *The pagination token that you include in your request to indicate the next * set of results that you want to retrieve.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *The pagination token that you include in your request to indicate the next * set of results that you want to retrieve.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *The pagination token that you include in your request to indicate the next * set of results that you want to retrieve.
*/ inline DescribeSubscribersForNotificationRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *The pagination token that you include in your request to indicate the next * set of results that you want to retrieve.
*/ inline DescribeSubscribersForNotificationRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *The pagination token that you include in your request to indicate the next * set of results that you want to retrieve.
*/ inline DescribeSubscribersForNotificationRequest& WithNextToken(const char* value) { SetNextToken(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; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace Budgets } // namespace Aws