AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
ConfiguredModelAlgorithmAssociationSummary.h
1
6#pragma once
7#include <aws/cleanroomsml/CleanRoomsML_EXPORTS.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/core/utils/memory/stl/AWSString.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 CleanRoomsML
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_CLEANROOMSML_API ConfiguredModelAlgorithmAssociationSummary() = default;
39 AWS_CLEANROOMSML_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::Utils::DateTime& GetCreateTime() const { return m_createTime; }
47 inline bool CreateTimeHasBeenSet() const { return m_createTimeHasBeenSet; }
48 template<typename CreateTimeT = Aws::Utils::DateTime>
49 void SetCreateTime(CreateTimeT&& value) { m_createTimeHasBeenSet = true; m_createTime = std::forward<CreateTimeT>(value); }
50 template<typename CreateTimeT = Aws::Utils::DateTime>
51 ConfiguredModelAlgorithmAssociationSummary& WithCreateTime(CreateTimeT&& value) { SetCreateTime(std::forward<CreateTimeT>(value)); return *this;}
53
55
59 inline const Aws::Utils::DateTime& GetUpdateTime() const { return m_updateTime; }
60 inline bool UpdateTimeHasBeenSet() const { return m_updateTimeHasBeenSet; }
61 template<typename UpdateTimeT = Aws::Utils::DateTime>
62 void SetUpdateTime(UpdateTimeT&& value) { m_updateTimeHasBeenSet = true; m_updateTime = std::forward<UpdateTimeT>(value); }
63 template<typename UpdateTimeT = Aws::Utils::DateTime>
64 ConfiguredModelAlgorithmAssociationSummary& WithUpdateTime(UpdateTimeT&& value) { SetUpdateTime(std::forward<UpdateTimeT>(value)); return *this;}
66
68
72 inline const Aws::String& GetConfiguredModelAlgorithmAssociationArn() const { return m_configuredModelAlgorithmAssociationArn; }
73 inline bool ConfiguredModelAlgorithmAssociationArnHasBeenSet() const { return m_configuredModelAlgorithmAssociationArnHasBeenSet; }
74 template<typename ConfiguredModelAlgorithmAssociationArnT = Aws::String>
75 void SetConfiguredModelAlgorithmAssociationArn(ConfiguredModelAlgorithmAssociationArnT&& value) { m_configuredModelAlgorithmAssociationArnHasBeenSet = true; m_configuredModelAlgorithmAssociationArn = std::forward<ConfiguredModelAlgorithmAssociationArnT>(value); }
76 template<typename ConfiguredModelAlgorithmAssociationArnT = Aws::String>
77 ConfiguredModelAlgorithmAssociationSummary& WithConfiguredModelAlgorithmAssociationArn(ConfiguredModelAlgorithmAssociationArnT&& value) { SetConfiguredModelAlgorithmAssociationArn(std::forward<ConfiguredModelAlgorithmAssociationArnT>(value)); return *this;}
79
81
85 inline const Aws::String& GetConfiguredModelAlgorithmArn() const { return m_configuredModelAlgorithmArn; }
86 inline bool ConfiguredModelAlgorithmArnHasBeenSet() const { return m_configuredModelAlgorithmArnHasBeenSet; }
87 template<typename ConfiguredModelAlgorithmArnT = Aws::String>
88 void SetConfiguredModelAlgorithmArn(ConfiguredModelAlgorithmArnT&& value) { m_configuredModelAlgorithmArnHasBeenSet = true; m_configuredModelAlgorithmArn = std::forward<ConfiguredModelAlgorithmArnT>(value); }
89 template<typename ConfiguredModelAlgorithmArnT = Aws::String>
90 ConfiguredModelAlgorithmAssociationSummary& WithConfiguredModelAlgorithmArn(ConfiguredModelAlgorithmArnT&& value) { SetConfiguredModelAlgorithmArn(std::forward<ConfiguredModelAlgorithmArnT>(value)); return *this;}
92
94
97 inline const Aws::String& GetName() const { return m_name; }
98 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
99 template<typename NameT = Aws::String>
100 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
101 template<typename NameT = Aws::String>
102 ConfiguredModelAlgorithmAssociationSummary& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
104
106
109 inline const Aws::String& GetDescription() const { return m_description; }
110 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
111 template<typename DescriptionT = Aws::String>
112 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
113 template<typename DescriptionT = Aws::String>
114 ConfiguredModelAlgorithmAssociationSummary& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
116
118
122 inline const Aws::String& GetMembershipIdentifier() const { return m_membershipIdentifier; }
123 inline bool MembershipIdentifierHasBeenSet() const { return m_membershipIdentifierHasBeenSet; }
124 template<typename MembershipIdentifierT = Aws::String>
125 void SetMembershipIdentifier(MembershipIdentifierT&& value) { m_membershipIdentifierHasBeenSet = true; m_membershipIdentifier = std::forward<MembershipIdentifierT>(value); }
126 template<typename MembershipIdentifierT = Aws::String>
127 ConfiguredModelAlgorithmAssociationSummary& WithMembershipIdentifier(MembershipIdentifierT&& value) { SetMembershipIdentifier(std::forward<MembershipIdentifierT>(value)); return *this;}
129
131
135 inline const Aws::String& GetCollaborationIdentifier() const { return m_collaborationIdentifier; }
136 inline bool CollaborationIdentifierHasBeenSet() const { return m_collaborationIdentifierHasBeenSet; }
137 template<typename CollaborationIdentifierT = Aws::String>
138 void SetCollaborationIdentifier(CollaborationIdentifierT&& value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier = std::forward<CollaborationIdentifierT>(value); }
139 template<typename CollaborationIdentifierT = Aws::String>
140 ConfiguredModelAlgorithmAssociationSummary& WithCollaborationIdentifier(CollaborationIdentifierT&& value) { SetCollaborationIdentifier(std::forward<CollaborationIdentifierT>(value)); return *this;}
142 private:
143
144 Aws::Utils::DateTime m_createTime{};
145 bool m_createTimeHasBeenSet = false;
146
147 Aws::Utils::DateTime m_updateTime{};
148 bool m_updateTimeHasBeenSet = false;
149
150 Aws::String m_configuredModelAlgorithmAssociationArn;
151 bool m_configuredModelAlgorithmAssociationArnHasBeenSet = false;
152
153 Aws::String m_configuredModelAlgorithmArn;
154 bool m_configuredModelAlgorithmArnHasBeenSet = false;
155
156 Aws::String m_name;
157 bool m_nameHasBeenSet = false;
158
159 Aws::String m_description;
160 bool m_descriptionHasBeenSet = false;
161
162 Aws::String m_membershipIdentifier;
163 bool m_membershipIdentifierHasBeenSet = false;
164
165 Aws::String m_collaborationIdentifier;
166 bool m_collaborationIdentifierHasBeenSet = false;
167 };
168
169} // namespace Model
170} // namespace CleanRoomsML
171} // namespace Aws
ConfiguredModelAlgorithmAssociationSummary & WithMembershipIdentifier(MembershipIdentifierT &&value)
ConfiguredModelAlgorithmAssociationSummary & WithCreateTime(CreateTimeT &&value)
ConfiguredModelAlgorithmAssociationSummary & WithConfiguredModelAlgorithmAssociationArn(ConfiguredModelAlgorithmAssociationArnT &&value)
ConfiguredModelAlgorithmAssociationSummary & WithCollaborationIdentifier(CollaborationIdentifierT &&value)
AWS_CLEANROOMSML_API Aws::Utils::Json::JsonValue Jsonize() const
ConfiguredModelAlgorithmAssociationSummary & WithDescription(DescriptionT &&value)
AWS_CLEANROOMSML_API ConfiguredModelAlgorithmAssociationSummary(Aws::Utils::Json::JsonView jsonValue)
void SetConfiguredModelAlgorithmAssociationArn(ConfiguredModelAlgorithmAssociationArnT &&value)
ConfiguredModelAlgorithmAssociationSummary & WithUpdateTime(UpdateTimeT &&value)
AWS_CLEANROOMSML_API ConfiguredModelAlgorithmAssociationSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
ConfiguredModelAlgorithmAssociationSummary & WithConfiguredModelAlgorithmArn(ConfiguredModelAlgorithmArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue