AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UnprocessedAccount.h
1
6#pragma once
7#include <aws/detective/Detective_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Detective
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_DETECTIVE_API UnprocessedAccount();
36 AWS_DETECTIVE_API UnprocessedAccount(Aws::Utils::Json::JsonView jsonValue);
38 AWS_DETECTIVE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::String& GetAccountId() const{ return m_accountId; }
47 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
48 inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
49 inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
50 inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
51 inline UnprocessedAccount& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
52 inline UnprocessedAccount& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
53 inline UnprocessedAccount& WithAccountId(const char* value) { SetAccountId(value); return *this;}
55
57
60 inline const Aws::String& GetReason() const{ return m_reason; }
61 inline bool ReasonHasBeenSet() const { return m_reasonHasBeenSet; }
62 inline void SetReason(const Aws::String& value) { m_reasonHasBeenSet = true; m_reason = value; }
63 inline void SetReason(Aws::String&& value) { m_reasonHasBeenSet = true; m_reason = std::move(value); }
64 inline void SetReason(const char* value) { m_reasonHasBeenSet = true; m_reason.assign(value); }
65 inline UnprocessedAccount& WithReason(const Aws::String& value) { SetReason(value); return *this;}
66 inline UnprocessedAccount& WithReason(Aws::String&& value) { SetReason(std::move(value)); return *this;}
67 inline UnprocessedAccount& WithReason(const char* value) { SetReason(value); return *this;}
69 private:
70
71 Aws::String m_accountId;
72 bool m_accountIdHasBeenSet = false;
73
74 Aws::String m_reason;
75 bool m_reasonHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace Detective
80} // namespace Aws
UnprocessedAccount & WithReason(const Aws::String &value)
AWS_DETECTIVE_API UnprocessedAccount & operator=(Aws::Utils::Json::JsonView jsonValue)
UnprocessedAccount & WithAccountId(const Aws::String &value)
void SetReason(const Aws::String &value)
AWS_DETECTIVE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_DETECTIVE_API UnprocessedAccount(Aws::Utils::Json::JsonView jsonValue)
UnprocessedAccount & WithReason(Aws::String &&value)
void SetAccountId(const Aws::String &value)
UnprocessedAccount & WithAccountId(const char *value)
UnprocessedAccount & WithReason(const char *value)
UnprocessedAccount & WithAccountId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue