/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about a budget.See Also:
AWS
* API Reference
Name of the associated budget.
*/ inline const Aws::String& GetBudgetName() const{ return m_budgetName; } /** *Name of the associated budget.
*/ inline bool BudgetNameHasBeenSet() const { return m_budgetNameHasBeenSet; } /** *Name of the associated budget.
*/ inline void SetBudgetName(const Aws::String& value) { m_budgetNameHasBeenSet = true; m_budgetName = value; } /** *Name of the associated budget.
*/ inline void SetBudgetName(Aws::String&& value) { m_budgetNameHasBeenSet = true; m_budgetName = std::move(value); } /** *Name of the associated budget.
*/ inline void SetBudgetName(const char* value) { m_budgetNameHasBeenSet = true; m_budgetName.assign(value); } /** *Name of the associated budget.
*/ inline BudgetDetail& WithBudgetName(const Aws::String& value) { SetBudgetName(value); return *this;} /** *Name of the associated budget.
*/ inline BudgetDetail& WithBudgetName(Aws::String&& value) { SetBudgetName(std::move(value)); return *this;} /** *Name of the associated budget.
*/ inline BudgetDetail& WithBudgetName(const char* value) { SetBudgetName(value); return *this;} private: Aws::String m_budgetName; bool m_budgetNameHasBeenSet = false; }; } // namespace Model } // namespace ServiceCatalog } // namespace Aws