AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
UnprocessedAccount.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/guardduty/GuardDuty_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace GuardDuty {
20namespace Model {
21
29 public:
30 AWS_GUARDDUTY_API UnprocessedAccount() = default;
31 AWS_GUARDDUTY_API UnprocessedAccount(Aws::Utils::Json::JsonView jsonValue);
33 AWS_GUARDDUTY_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetAccountId() const { return m_accountId; }
40 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
41 template <typename AccountIdT = Aws::String>
42 void SetAccountId(AccountIdT&& value) {
43 m_accountIdHasBeenSet = true;
44 m_accountId = std::forward<AccountIdT>(value);
45 }
46 template <typename AccountIdT = Aws::String>
47 UnprocessedAccount& WithAccountId(AccountIdT&& value) {
48 SetAccountId(std::forward<AccountIdT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetResult() const { return m_result; }
58 inline bool ResultHasBeenSet() const { return m_resultHasBeenSet; }
59 template <typename ResultT = Aws::String>
60 void SetResult(ResultT&& value) {
61 m_resultHasBeenSet = true;
62 m_result = std::forward<ResultT>(value);
63 }
64 template <typename ResultT = Aws::String>
65 UnprocessedAccount& WithResult(ResultT&& value) {
66 SetResult(std::forward<ResultT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_accountId;
72
73 Aws::String m_result;
74 bool m_accountIdHasBeenSet = false;
75 bool m_resultHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace GuardDuty
80} // namespace Aws
AWS_GUARDDUTY_API UnprocessedAccount & operator=(Aws::Utils::Json::JsonView jsonValue)
UnprocessedAccount & WithAccountId(AccountIdT &&value)
AWS_GUARDDUTY_API UnprocessedAccount(Aws::Utils::Json::JsonView jsonValue)
AWS_GUARDDUTY_API UnprocessedAccount()=default
UnprocessedAccount & WithResult(ResultT &&value)
AWS_GUARDDUTY_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue