AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ProfileSummary.h
1
6#pragma once
7#include <aws/b2bi/B2BI_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/b2bi/model/Logging.h>
10#include <aws/core/utils/DateTime.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace B2BI
24{
25namespace Model
26{
27
35 {
36 public:
37 AWS_B2BI_API ProfileSummary();
41
42
44
47 inline const Aws::String& GetProfileId() const{ return m_profileId; }
48 inline bool ProfileIdHasBeenSet() const { return m_profileIdHasBeenSet; }
49 inline void SetProfileId(const Aws::String& value) { m_profileIdHasBeenSet = true; m_profileId = value; }
50 inline void SetProfileId(Aws::String&& value) { m_profileIdHasBeenSet = true; m_profileId = std::move(value); }
51 inline void SetProfileId(const char* value) { m_profileIdHasBeenSet = true; m_profileId.assign(value); }
52 inline ProfileSummary& WithProfileId(const Aws::String& value) { SetProfileId(value); return *this;}
53 inline ProfileSummary& WithProfileId(Aws::String&& value) { SetProfileId(std::move(value)); return *this;}
54 inline ProfileSummary& WithProfileId(const char* value) { SetProfileId(value); return *this;}
56
58
61 inline const Aws::String& GetName() const{ return m_name; }
62 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
63 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
64 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
65 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
66 inline ProfileSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
67 inline ProfileSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
68 inline ProfileSummary& WithName(const char* value) { SetName(value); return *this;}
70
72
75 inline const Aws::String& GetBusinessName() const{ return m_businessName; }
76 inline bool BusinessNameHasBeenSet() const { return m_businessNameHasBeenSet; }
77 inline void SetBusinessName(const Aws::String& value) { m_businessNameHasBeenSet = true; m_businessName = value; }
78 inline void SetBusinessName(Aws::String&& value) { m_businessNameHasBeenSet = true; m_businessName = std::move(value); }
79 inline void SetBusinessName(const char* value) { m_businessNameHasBeenSet = true; m_businessName.assign(value); }
80 inline ProfileSummary& WithBusinessName(const Aws::String& value) { SetBusinessName(value); return *this;}
81 inline ProfileSummary& WithBusinessName(Aws::String&& value) { SetBusinessName(std::move(value)); return *this;}
82 inline ProfileSummary& WithBusinessName(const char* value) { SetBusinessName(value); return *this;}
84
86
89 inline const Logging& GetLogging() const{ return m_logging; }
90 inline bool LoggingHasBeenSet() const { return m_loggingHasBeenSet; }
91 inline void SetLogging(const Logging& value) { m_loggingHasBeenSet = true; m_logging = value; }
92 inline void SetLogging(Logging&& value) { m_loggingHasBeenSet = true; m_logging = std::move(value); }
93 inline ProfileSummary& WithLogging(const Logging& value) { SetLogging(value); return *this;}
94 inline ProfileSummary& WithLogging(Logging&& value) { SetLogging(std::move(value)); return *this;}
96
98
101 inline const Aws::String& GetLogGroupName() const{ return m_logGroupName; }
102 inline bool LogGroupNameHasBeenSet() const { return m_logGroupNameHasBeenSet; }
103 inline void SetLogGroupName(const Aws::String& value) { m_logGroupNameHasBeenSet = true; m_logGroupName = value; }
104 inline void SetLogGroupName(Aws::String&& value) { m_logGroupNameHasBeenSet = true; m_logGroupName = std::move(value); }
105 inline void SetLogGroupName(const char* value) { m_logGroupNameHasBeenSet = true; m_logGroupName.assign(value); }
106 inline ProfileSummary& WithLogGroupName(const Aws::String& value) { SetLogGroupName(value); return *this;}
107 inline ProfileSummary& WithLogGroupName(Aws::String&& value) { SetLogGroupName(std::move(value)); return *this;}
108 inline ProfileSummary& WithLogGroupName(const char* value) { SetLogGroupName(value); return *this;}
110
112
115 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
116 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
117 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; }
118 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); }
119 inline ProfileSummary& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
120 inline ProfileSummary& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
122
124
128 inline const Aws::Utils::DateTime& GetModifiedAt() const{ return m_modifiedAt; }
129 inline bool ModifiedAtHasBeenSet() const { return m_modifiedAtHasBeenSet; }
130 inline void SetModifiedAt(const Aws::Utils::DateTime& value) { m_modifiedAtHasBeenSet = true; m_modifiedAt = value; }
131 inline void SetModifiedAt(Aws::Utils::DateTime&& value) { m_modifiedAtHasBeenSet = true; m_modifiedAt = std::move(value); }
132 inline ProfileSummary& WithModifiedAt(const Aws::Utils::DateTime& value) { SetModifiedAt(value); return *this;}
133 inline ProfileSummary& WithModifiedAt(Aws::Utils::DateTime&& value) { SetModifiedAt(std::move(value)); return *this;}
135 private:
136
137 Aws::String m_profileId;
138 bool m_profileIdHasBeenSet = false;
139
140 Aws::String m_name;
141 bool m_nameHasBeenSet = false;
142
143 Aws::String m_businessName;
144 bool m_businessNameHasBeenSet = false;
145
146 Logging m_logging;
147 bool m_loggingHasBeenSet = false;
148
149 Aws::String m_logGroupName;
150 bool m_logGroupNameHasBeenSet = false;
151
152 Aws::Utils::DateTime m_createdAt;
153 bool m_createdAtHasBeenSet = false;
154
155 Aws::Utils::DateTime m_modifiedAt;
156 bool m_modifiedAtHasBeenSet = false;
157 };
158
159} // namespace Model
160} // namespace B2BI
161} // namespace Aws
const Aws::String & GetLogGroupName() const
void SetLogging(Logging &&value)
void SetModifiedAt(const Aws::Utils::DateTime &value)
const Aws::String & GetName() const
ProfileSummary & WithBusinessName(const Aws::String &value)
void SetProfileId(const char *value)
void SetLogGroupName(const Aws::String &value)
void SetBusinessName(Aws::String &&value)
void SetBusinessName(const Aws::String &value)
void SetName(Aws::String &&value)
const Aws::Utils::DateTime & GetCreatedAt() const
void SetCreatedAt(const Aws::Utils::DateTime &value)
const Aws::Utils::DateTime & GetModifiedAt() const
ProfileSummary & WithLogGroupName(Aws::String &&value)
ProfileSummary & WithCreatedAt(const Aws::Utils::DateTime &value)
void SetBusinessName(const char *value)
ProfileSummary & WithLogging(const Logging &value)
ProfileSummary & WithBusinessName(Aws::String &&value)
ProfileSummary & WithName(Aws::String &&value)
const Logging & GetLogging() const
void SetProfileId(const Aws::String &value)
ProfileSummary & WithBusinessName(const char *value)
const Aws::String & GetBusinessName() const
void SetLogging(const Logging &value)
void SetProfileId(Aws::String &&value)
const Aws::String & GetProfileId() const
void SetName(const Aws::String &value)
AWS_B2BI_API ProfileSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
ProfileSummary & WithLogGroupName(const char *value)
ProfileSummary & WithProfileId(const char *value)
void SetCreatedAt(Aws::Utils::DateTime &&value)
void SetName(const char *value)
void SetLogGroupName(const char *value)
ProfileSummary & WithCreatedAt(Aws::Utils::DateTime &&value)
ProfileSummary & WithName(const Aws::String &value)
ProfileSummary & WithName(const char *value)
void SetModifiedAt(Aws::Utils::DateTime &&value)
ProfileSummary & WithLogGroupName(const Aws::String &value)
AWS_B2BI_API ProfileSummary(Aws::Utils::Json::JsonView jsonValue)
ProfileSummary & WithProfileId(const Aws::String &value)
AWS_B2BI_API Aws::Utils::Json::JsonValue Jsonize() const
ProfileSummary & WithProfileId(Aws::String &&value)
void SetLogGroupName(Aws::String &&value)
ProfileSummary & WithLogging(Logging &&value)
ProfileSummary & WithModifiedAt(const Aws::Utils::DateTime &value)
ProfileSummary & WithModifiedAt(Aws::Utils::DateTime &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue