/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Budgets { namespace Model { class DescribeBudgetPerformanceHistoryResult { public: AWS_BUDGETS_API DescribeBudgetPerformanceHistoryResult(); AWS_BUDGETS_API DescribeBudgetPerformanceHistoryResult(const Aws::AmazonWebServiceResult& result); AWS_BUDGETS_API DescribeBudgetPerformanceHistoryResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The history of how often the budget has gone into an ALARM * state.

For DAILY budgets, the history saves the state of the * budget for the last 60 days. For MONTHLY budgets, the history saves * the state of the budget for the current month plus the last 12 months. For * QUARTERLY budgets, the history saves the state of the budget for * the last four quarters.

*/ inline const BudgetPerformanceHistory& GetBudgetPerformanceHistory() const{ return m_budgetPerformanceHistory; } /** *

The history of how often the budget has gone into an ALARM * state.

For DAILY budgets, the history saves the state of the * budget for the last 60 days. For MONTHLY budgets, the history saves * the state of the budget for the current month plus the last 12 months. For * QUARTERLY budgets, the history saves the state of the budget for * the last four quarters.

*/ inline void SetBudgetPerformanceHistory(const BudgetPerformanceHistory& value) { m_budgetPerformanceHistory = value; } /** *

The history of how often the budget has gone into an ALARM * state.

For DAILY budgets, the history saves the state of the * budget for the last 60 days. For MONTHLY budgets, the history saves * the state of the budget for the current month plus the last 12 months. For * QUARTERLY budgets, the history saves the state of the budget for * the last four quarters.

*/ inline void SetBudgetPerformanceHistory(BudgetPerformanceHistory&& value) { m_budgetPerformanceHistory = std::move(value); } /** *

The history of how often the budget has gone into an ALARM * state.

For DAILY budgets, the history saves the state of the * budget for the last 60 days. For MONTHLY budgets, the history saves * the state of the budget for the current month plus the last 12 months. For * QUARTERLY budgets, the history saves the state of the budget for * the last four quarters.

*/ inline DescribeBudgetPerformanceHistoryResult& WithBudgetPerformanceHistory(const BudgetPerformanceHistory& value) { SetBudgetPerformanceHistory(value); return *this;} /** *

The history of how often the budget has gone into an ALARM * state.

For DAILY budgets, the history saves the state of the * budget for the last 60 days. For MONTHLY budgets, the history saves * the state of the budget for the current month plus the last 12 months. For * QUARTERLY budgets, the history saves the state of the budget for * the last four quarters.

*/ inline DescribeBudgetPerformanceHistoryResult& WithBudgetPerformanceHistory(BudgetPerformanceHistory&& value) { SetBudgetPerformanceHistory(std::move(value)); return *this;} inline const Aws::String& GetNextToken() const{ return m_nextToken; } inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } inline void SetNextToken(const char* value) { m_nextToken.assign(value); } inline DescribeBudgetPerformanceHistoryResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} inline DescribeBudgetPerformanceHistoryResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} inline DescribeBudgetPerformanceHistoryResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeBudgetPerformanceHistoryResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeBudgetPerformanceHistoryResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeBudgetPerformanceHistoryResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: BudgetPerformanceHistory m_budgetPerformanceHistory; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace Budgets } // namespace Aws