AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
CollaborationAnalysisTemplateSummary.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_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 CleanRooms
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_CLEANROOMS_API CollaborationAnalysisTemplateSummary() = default;
39 AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetArn() const { return m_arn; }
47 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
48 template<typename ArnT = Aws::String>
49 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
50 template<typename ArnT = Aws::String>
51 CollaborationAnalysisTemplateSummary& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
53
55
59 inline const Aws::Utils::DateTime& GetCreateTime() const { return m_createTime; }
60 inline bool CreateTimeHasBeenSet() const { return m_createTimeHasBeenSet; }
61 template<typename CreateTimeT = Aws::Utils::DateTime>
62 void SetCreateTime(CreateTimeT&& value) { m_createTimeHasBeenSet = true; m_createTime = std::forward<CreateTimeT>(value); }
63 template<typename CreateTimeT = Aws::Utils::DateTime>
64 CollaborationAnalysisTemplateSummary& WithCreateTime(CreateTimeT&& value) { SetCreateTime(std::forward<CreateTimeT>(value)); return *this;}
66
68
71 inline const Aws::String& GetId() const { return m_id; }
72 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
73 template<typename IdT = Aws::String>
74 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
75 template<typename IdT = Aws::String>
76 CollaborationAnalysisTemplateSummary& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
78
80
83 inline const Aws::String& GetName() const { return m_name; }
84 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
85 template<typename NameT = Aws::String>
86 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
87 template<typename NameT = Aws::String>
88 CollaborationAnalysisTemplateSummary& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
90
92
96 inline const Aws::Utils::DateTime& GetUpdateTime() const { return m_updateTime; }
97 inline bool UpdateTimeHasBeenSet() const { return m_updateTimeHasBeenSet; }
98 template<typename UpdateTimeT = Aws::Utils::DateTime>
99 void SetUpdateTime(UpdateTimeT&& value) { m_updateTimeHasBeenSet = true; m_updateTime = std::forward<UpdateTimeT>(value); }
100 template<typename UpdateTimeT = Aws::Utils::DateTime>
101 CollaborationAnalysisTemplateSummary& WithUpdateTime(UpdateTimeT&& value) { SetUpdateTime(std::forward<UpdateTimeT>(value)); return *this;}
103
105
108 inline const Aws::String& GetCollaborationArn() const { return m_collaborationArn; }
109 inline bool CollaborationArnHasBeenSet() const { return m_collaborationArnHasBeenSet; }
110 template<typename CollaborationArnT = Aws::String>
111 void SetCollaborationArn(CollaborationArnT&& value) { m_collaborationArnHasBeenSet = true; m_collaborationArn = std::forward<CollaborationArnT>(value); }
112 template<typename CollaborationArnT = Aws::String>
113 CollaborationAnalysisTemplateSummary& WithCollaborationArn(CollaborationArnT&& value) { SetCollaborationArn(std::forward<CollaborationArnT>(value)); return *this;}
115
117
121 inline const Aws::String& GetCollaborationId() const { return m_collaborationId; }
122 inline bool CollaborationIdHasBeenSet() const { return m_collaborationIdHasBeenSet; }
123 template<typename CollaborationIdT = Aws::String>
124 void SetCollaborationId(CollaborationIdT&& value) { m_collaborationIdHasBeenSet = true; m_collaborationId = std::forward<CollaborationIdT>(value); }
125 template<typename CollaborationIdT = Aws::String>
126 CollaborationAnalysisTemplateSummary& WithCollaborationId(CollaborationIdT&& value) { SetCollaborationId(std::forward<CollaborationIdT>(value)); return *this;}
128
130
134 inline const Aws::String& GetCreatorAccountId() const { return m_creatorAccountId; }
135 inline bool CreatorAccountIdHasBeenSet() const { return m_creatorAccountIdHasBeenSet; }
136 template<typename CreatorAccountIdT = Aws::String>
137 void SetCreatorAccountId(CreatorAccountIdT&& value) { m_creatorAccountIdHasBeenSet = true; m_creatorAccountId = std::forward<CreatorAccountIdT>(value); }
138 template<typename CreatorAccountIdT = Aws::String>
139 CollaborationAnalysisTemplateSummary& WithCreatorAccountId(CreatorAccountIdT&& value) { SetCreatorAccountId(std::forward<CreatorAccountIdT>(value)); return *this;}
141
143
146 inline const Aws::String& GetDescription() const { return m_description; }
147 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
148 template<typename DescriptionT = Aws::String>
149 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
150 template<typename DescriptionT = Aws::String>
151 CollaborationAnalysisTemplateSummary& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
153 private:
154
155 Aws::String m_arn;
156 bool m_arnHasBeenSet = false;
157
158 Aws::Utils::DateTime m_createTime{};
159 bool m_createTimeHasBeenSet = false;
160
161 Aws::String m_id;
162 bool m_idHasBeenSet = false;
163
164 Aws::String m_name;
165 bool m_nameHasBeenSet = false;
166
167 Aws::Utils::DateTime m_updateTime{};
168 bool m_updateTimeHasBeenSet = false;
169
170 Aws::String m_collaborationArn;
171 bool m_collaborationArnHasBeenSet = false;
172
173 Aws::String m_collaborationId;
174 bool m_collaborationIdHasBeenSet = false;
175
176 Aws::String m_creatorAccountId;
177 bool m_creatorAccountIdHasBeenSet = false;
178
179 Aws::String m_description;
180 bool m_descriptionHasBeenSet = false;
181 };
182
183} // namespace Model
184} // namespace CleanRooms
185} // namespace Aws
CollaborationAnalysisTemplateSummary & WithUpdateTime(UpdateTimeT &&value)
AWS_CLEANROOMS_API CollaborationAnalysisTemplateSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
CollaborationAnalysisTemplateSummary & WithCreatorAccountId(CreatorAccountIdT &&value)
AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CLEANROOMS_API CollaborationAnalysisTemplateSummary(Aws::Utils::Json::JsonView jsonValue)
CollaborationAnalysisTemplateSummary & WithCollaborationArn(CollaborationArnT &&value)
CollaborationAnalysisTemplateSummary & WithCreateTime(CreateTimeT &&value)
CollaborationAnalysisTemplateSummary & WithDescription(DescriptionT &&value)
CollaborationAnalysisTemplateSummary & WithCollaborationId(CollaborationIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue