/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Budgets { namespace Model { /** *

Response of DescribeBudget

See Also:

AWS * API Reference

*/ class AWS_BUDGETS_API DescribeBudgetResult { public: DescribeBudgetResult(); DescribeBudgetResult(const Aws::AmazonWebServiceResult& result); DescribeBudgetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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