AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
DeleteBudgetActionRequest.h
1
6#pragma once
7#include <aws/budgets/BudgetsRequest.h>
8#include <aws/budgets/Budgets_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Budgets {
15namespace Model {
16
20 public:
21 AWS_BUDGETS_API DeleteBudgetActionRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DeleteBudgetAction"; }
28
29 AWS_BUDGETS_API Aws::String SerializePayload() const override;
30
32
34
35 inline const Aws::String& GetAccountId() const { return m_accountId; }
36 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
37 template <typename AccountIdT = Aws::String>
38 void SetAccountId(AccountIdT&& value) {
39 m_accountIdHasBeenSet = true;
40 m_accountId = std::forward<AccountIdT>(value);
41 }
42 template <typename AccountIdT = Aws::String>
44 SetAccountId(std::forward<AccountIdT>(value));
45 return *this;
46 }
48
50
51 inline const Aws::String& GetBudgetName() const { return m_budgetName; }
52 inline bool BudgetNameHasBeenSet() const { return m_budgetNameHasBeenSet; }
53 template <typename BudgetNameT = Aws::String>
54 void SetBudgetName(BudgetNameT&& value) {
55 m_budgetNameHasBeenSet = true;
56 m_budgetName = std::forward<BudgetNameT>(value);
57 }
58 template <typename BudgetNameT = Aws::String>
60 SetBudgetName(std::forward<BudgetNameT>(value));
61 return *this;
62 }
64
66
69 inline const Aws::String& GetActionId() const { return m_actionId; }
70 inline bool ActionIdHasBeenSet() const { return m_actionIdHasBeenSet; }
71 template <typename ActionIdT = Aws::String>
72 void SetActionId(ActionIdT&& value) {
73 m_actionIdHasBeenSet = true;
74 m_actionId = std::forward<ActionIdT>(value);
75 }
76 template <typename ActionIdT = Aws::String>
78 SetActionId(std::forward<ActionIdT>(value));
79 return *this;
80 }
82 private:
83 Aws::String m_accountId;
84
85 Aws::String m_budgetName;
86
87 Aws::String m_actionId;
88 bool m_accountIdHasBeenSet = false;
89 bool m_budgetNameHasBeenSet = false;
90 bool m_actionIdHasBeenSet = false;
91};
92
93} // namespace Model
94} // namespace Budgets
95} // namespace Aws
DeleteBudgetActionRequest & WithAccountId(AccountIdT &&value)
AWS_BUDGETS_API DeleteBudgetActionRequest()=default
AWS_BUDGETS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteBudgetActionRequest & WithBudgetName(BudgetNameT &&value)
virtual const char * GetServiceRequestName() const override
AWS_BUDGETS_API Aws::String SerializePayload() const override
DeleteBudgetActionRequest & WithActionId(ActionIdT &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String