AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AttributeGroupSummary.h
1
6#pragma once
7#include <aws/servicecatalog-appregistry/AppRegistry_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace AppRegistry
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_APPREGISTRY_API AttributeGroupSummary();
37 AWS_APPREGISTRY_API AttributeGroupSummary(Aws::Utils::Json::JsonView jsonValue);
39 AWS_APPREGISTRY_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetId() const{ return m_id; }
47 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
48 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
49 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
50 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
51 inline AttributeGroupSummary& WithId(const Aws::String& value) { SetId(value); return *this;}
52 inline AttributeGroupSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
53 inline AttributeGroupSummary& WithId(const char* value) { SetId(value); return *this;}
55
57
61 inline const Aws::String& GetArn() const{ return m_arn; }
62 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
63 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
64 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
65 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
66 inline AttributeGroupSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
67 inline AttributeGroupSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
68 inline AttributeGroupSummary& WithArn(const char* value) { SetArn(value); return *this;}
70
72
75 inline const Aws::String& GetName() const{ return m_name; }
76 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
77 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
78 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
79 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
80 inline AttributeGroupSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
81 inline AttributeGroupSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
82 inline AttributeGroupSummary& WithName(const char* value) { SetName(value); return *this;}
84
86
89 inline const Aws::String& GetDescription() const{ return m_description; }
90 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
91 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
92 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
93 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
94 inline AttributeGroupSummary& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
95 inline AttributeGroupSummary& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
96 inline AttributeGroupSummary& WithDescription(const char* value) { SetDescription(value); return *this;}
98
100
104 inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; }
105 inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; }
106 inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; }
107 inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); }
108 inline AttributeGroupSummary& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;}
109 inline AttributeGroupSummary& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;}
111
113
118 inline const Aws::Utils::DateTime& GetLastUpdateTime() const{ return m_lastUpdateTime; }
119 inline bool LastUpdateTimeHasBeenSet() const { return m_lastUpdateTimeHasBeenSet; }
120 inline void SetLastUpdateTime(const Aws::Utils::DateTime& value) { m_lastUpdateTimeHasBeenSet = true; m_lastUpdateTime = value; }
121 inline void SetLastUpdateTime(Aws::Utils::DateTime&& value) { m_lastUpdateTimeHasBeenSet = true; m_lastUpdateTime = std::move(value); }
123 inline AttributeGroupSummary& WithLastUpdateTime(Aws::Utils::DateTime&& value) { SetLastUpdateTime(std::move(value)); return *this;}
125
127
130 inline const Aws::String& GetCreatedBy() const{ return m_createdBy; }
131 inline bool CreatedByHasBeenSet() const { return m_createdByHasBeenSet; }
132 inline void SetCreatedBy(const Aws::String& value) { m_createdByHasBeenSet = true; m_createdBy = value; }
133 inline void SetCreatedBy(Aws::String&& value) { m_createdByHasBeenSet = true; m_createdBy = std::move(value); }
134 inline void SetCreatedBy(const char* value) { m_createdByHasBeenSet = true; m_createdBy.assign(value); }
135 inline AttributeGroupSummary& WithCreatedBy(const Aws::String& value) { SetCreatedBy(value); return *this;}
136 inline AttributeGroupSummary& WithCreatedBy(Aws::String&& value) { SetCreatedBy(std::move(value)); return *this;}
137 inline AttributeGroupSummary& WithCreatedBy(const char* value) { SetCreatedBy(value); return *this;}
139 private:
140
141 Aws::String m_id;
142 bool m_idHasBeenSet = false;
143
144 Aws::String m_arn;
145 bool m_arnHasBeenSet = false;
146
147 Aws::String m_name;
148 bool m_nameHasBeenSet = false;
149
150 Aws::String m_description;
151 bool m_descriptionHasBeenSet = false;
152
153 Aws::Utils::DateTime m_creationTime;
154 bool m_creationTimeHasBeenSet = false;
155
156 Aws::Utils::DateTime m_lastUpdateTime;
157 bool m_lastUpdateTimeHasBeenSet = false;
158
159 Aws::String m_createdBy;
160 bool m_createdByHasBeenSet = false;
161 };
162
163} // namespace Model
164} // namespace AppRegistry
165} // namespace Aws
AttributeGroupSummary & WithDescription(const Aws::String &value)
AWS_APPREGISTRY_API AttributeGroupSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
AttributeGroupSummary & WithName(const Aws::String &value)
AttributeGroupSummary & WithDescription(Aws::String &&value)
AttributeGroupSummary & WithCreatedBy(Aws::String &&value)
AttributeGroupSummary & WithArn(const char *value)
AttributeGroupSummary & WithId(const Aws::String &value)
AttributeGroupSummary & WithArn(Aws::String &&value)
AttributeGroupSummary & WithLastUpdateTime(Aws::Utils::DateTime &&value)
AttributeGroupSummary & WithCreationTime(Aws::Utils::DateTime &&value)
AttributeGroupSummary & WithId(const char *value)
AttributeGroupSummary & WithName(const char *value)
AWS_APPREGISTRY_API AttributeGroupSummary(Aws::Utils::Json::JsonView jsonValue)
AttributeGroupSummary & WithId(Aws::String &&value)
AttributeGroupSummary & WithArn(const Aws::String &value)
void SetCreationTime(Aws::Utils::DateTime &&value)
void SetLastUpdateTime(const Aws::Utils::DateTime &value)
AttributeGroupSummary & WithCreatedBy(const char *value)
void SetLastUpdateTime(Aws::Utils::DateTime &&value)
AWS_APPREGISTRY_API Aws::Utils::Json::JsonValue Jsonize() const
AttributeGroupSummary & WithCreationTime(const Aws::Utils::DateTime &value)
const Aws::Utils::DateTime & GetCreationTime() const
AttributeGroupSummary & WithLastUpdateTime(const Aws::Utils::DateTime &value)
AttributeGroupSummary & WithDescription(const char *value)
void SetCreationTime(const Aws::Utils::DateTime &value)
const Aws::Utils::DateTime & GetLastUpdateTime() const
AttributeGroupSummary & WithName(Aws::String &&value)
AttributeGroupSummary & WithCreatedBy(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue