/**
* 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;} private: Budget m_budget; }; } // namespace Model } // namespace Budgets } // namespace Aws