/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Budgets { namespace Model { /** */ class DescribeBudgetActionRequest : public BudgetsRequest { public: AWS_BUDGETS_API DescribeBudgetActionRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeBudgetAction"; } AWS_BUDGETS_API Aws::String SerializePayload() const override; AWS_BUDGETS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; inline const Aws::String& GetAccountId() const{ return m_accountId; } inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } inline DescribeBudgetActionRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} inline DescribeBudgetActionRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} inline DescribeBudgetActionRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;} inline const Aws::String& GetBudgetName() const{ return m_budgetName; } inline bool BudgetNameHasBeenSet() const { return m_budgetNameHasBeenSet; } inline void SetBudgetName(const Aws::String& value) { m_budgetNameHasBeenSet = true; m_budgetName = value; } inline void SetBudgetName(Aws::String&& value) { m_budgetNameHasBeenSet = true; m_budgetName = std::move(value); } inline void SetBudgetName(const char* value) { m_budgetNameHasBeenSet = true; m_budgetName.assign(value); } inline DescribeBudgetActionRequest& WithBudgetName(const Aws::String& value) { SetBudgetName(value); return *this;} inline DescribeBudgetActionRequest& WithBudgetName(Aws::String&& value) { SetBudgetName(std::move(value)); return *this;} inline DescribeBudgetActionRequest& WithBudgetName(const char* value) { SetBudgetName(value); return *this;} /** *

A system-generated universally unique identifier (UUID) for the action.

*/ inline const Aws::String& GetActionId() const{ return m_actionId; } /** *

A system-generated universally unique identifier (UUID) for the action.

*/ inline bool ActionIdHasBeenSet() const { return m_actionIdHasBeenSet; } /** *

A system-generated universally unique identifier (UUID) for the action.

*/ inline void SetActionId(const Aws::String& value) { m_actionIdHasBeenSet = true; m_actionId = value; } /** *

A system-generated universally unique identifier (UUID) for the action.

*/ inline void SetActionId(Aws::String&& value) { m_actionIdHasBeenSet = true; m_actionId = std::move(value); } /** *

A system-generated universally unique identifier (UUID) for the action.

*/ inline void SetActionId(const char* value) { m_actionIdHasBeenSet = true; m_actionId.assign(value); } /** *

A system-generated universally unique identifier (UUID) for the action.

*/ inline DescribeBudgetActionRequest& WithActionId(const Aws::String& value) { SetActionId(value); return *this;} /** *

A system-generated universally unique identifier (UUID) for the action.

*/ inline DescribeBudgetActionRequest& WithActionId(Aws::String&& value) { SetActionId(std::move(value)); return *this;} /** *

A system-generated universally unique identifier (UUID) for the action.

*/ inline DescribeBudgetActionRequest& WithActionId(const char* value) { SetActionId(value); return *this;} private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::String m_budgetName; bool m_budgetNameHasBeenSet = false; Aws::String m_actionId; bool m_actionIdHasBeenSet = false; }; } // namespace Model } // namespace Budgets } // namespace Aws