/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Response of DescribeBudget See Also:
AWS
* API Reference
The description of the budget.
*/ inline const Budget& GetBudget() const{ return m_budget; } /** *The description of the budget.
*/ inline void SetBudget(const Budget& value) { m_budget = value; } /** *The description of the budget.
*/ inline void SetBudget(Budget&& value) { m_budget = std::move(value); } /** *The description of the budget.
*/ inline DescribeBudgetResult& WithBudget(const Budget& value) { SetBudget(value); return *this;} /** *The description of the budget.
*/ inline DescribeBudgetResult& WithBudget(Budget&& value) { SetBudget(std::move(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 DescribeBudgetResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeBudgetResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeBudgetResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Budget m_budget; Aws::String m_requestId; }; } // namespace Model } // namespace Budgets } // namespace Aws