AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
UpdateSimulationApplicationResult.h
1
6#pragma once
7#include <aws/robomaker/RoboMaker_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/robomaker/model/SimulationSoftwareSuite.h>
11#include <aws/robomaker/model/RobotSoftwareSuite.h>
12#include <aws/robomaker/model/RenderingEngine.h>
13#include <aws/core/utils/DateTime.h>
14#include <aws/robomaker/model/Environment.h>
15#include <aws/robomaker/model/Source.h>
16#include <utility>
17
18namespace Aws
19{
20template<typename RESULT_TYPE>
21class AmazonWebServiceResult;
22
23namespace Utils
24{
25namespace Json
26{
27 class JsonValue;
28} // namespace Json
29} // namespace Utils
30namespace RoboMaker
31{
32namespace Model
33{
35 {
36 public:
37 AWS_ROBOMAKER_API UpdateSimulationApplicationResult() = default;
40
41
43
46 inline const Aws::String& GetArn() const { return m_arn; }
47 template<typename ArnT = Aws::String>
48 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
49 template<typename ArnT = Aws::String>
50 UpdateSimulationApplicationResult& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
52
54
57 inline const Aws::String& GetName() const { return m_name; }
58 template<typename NameT = Aws::String>
59 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
60 template<typename NameT = Aws::String>
61 UpdateSimulationApplicationResult& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
63
65
68 inline const Aws::String& GetVersion() const { return m_version; }
69 template<typename VersionT = Aws::String>
70 void SetVersion(VersionT&& value) { m_versionHasBeenSet = true; m_version = std::forward<VersionT>(value); }
71 template<typename VersionT = Aws::String>
72 UpdateSimulationApplicationResult& WithVersion(VersionT&& value) { SetVersion(std::forward<VersionT>(value)); return *this;}
74
76
79 inline const Aws::Vector<Source>& GetSources() const { return m_sources; }
80 template<typename SourcesT = Aws::Vector<Source>>
81 void SetSources(SourcesT&& value) { m_sourcesHasBeenSet = true; m_sources = std::forward<SourcesT>(value); }
82 template<typename SourcesT = Aws::Vector<Source>>
83 UpdateSimulationApplicationResult& WithSources(SourcesT&& value) { SetSources(std::forward<SourcesT>(value)); return *this;}
84 template<typename SourcesT = Source>
85 UpdateSimulationApplicationResult& AddSources(SourcesT&& value) { m_sourcesHasBeenSet = true; m_sources.emplace_back(std::forward<SourcesT>(value)); return *this; }
87
89
92 inline const SimulationSoftwareSuite& GetSimulationSoftwareSuite() const { return m_simulationSoftwareSuite; }
93 template<typename SimulationSoftwareSuiteT = SimulationSoftwareSuite>
94 void SetSimulationSoftwareSuite(SimulationSoftwareSuiteT&& value) { m_simulationSoftwareSuiteHasBeenSet = true; m_simulationSoftwareSuite = std::forward<SimulationSoftwareSuiteT>(value); }
95 template<typename SimulationSoftwareSuiteT = SimulationSoftwareSuite>
96 UpdateSimulationApplicationResult& WithSimulationSoftwareSuite(SimulationSoftwareSuiteT&& value) { SetSimulationSoftwareSuite(std::forward<SimulationSoftwareSuiteT>(value)); return *this;}
98
100
103 inline const RobotSoftwareSuite& GetRobotSoftwareSuite() const { return m_robotSoftwareSuite; }
104 template<typename RobotSoftwareSuiteT = RobotSoftwareSuite>
105 void SetRobotSoftwareSuite(RobotSoftwareSuiteT&& value) { m_robotSoftwareSuiteHasBeenSet = true; m_robotSoftwareSuite = std::forward<RobotSoftwareSuiteT>(value); }
106 template<typename RobotSoftwareSuiteT = RobotSoftwareSuite>
107 UpdateSimulationApplicationResult& WithRobotSoftwareSuite(RobotSoftwareSuiteT&& value) { SetRobotSoftwareSuite(std::forward<RobotSoftwareSuiteT>(value)); return *this;}
109
111
114 inline const RenderingEngine& GetRenderingEngine() const { return m_renderingEngine; }
115 template<typename RenderingEngineT = RenderingEngine>
116 void SetRenderingEngine(RenderingEngineT&& value) { m_renderingEngineHasBeenSet = true; m_renderingEngine = std::forward<RenderingEngineT>(value); }
117 template<typename RenderingEngineT = RenderingEngine>
118 UpdateSimulationApplicationResult& WithRenderingEngine(RenderingEngineT&& value) { SetRenderingEngine(std::forward<RenderingEngineT>(value)); return *this;}
120
122
126 inline const Aws::Utils::DateTime& GetLastUpdatedAt() const { return m_lastUpdatedAt; }
127 template<typename LastUpdatedAtT = Aws::Utils::DateTime>
128 void SetLastUpdatedAt(LastUpdatedAtT&& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = std::forward<LastUpdatedAtT>(value); }
129 template<typename LastUpdatedAtT = Aws::Utils::DateTime>
130 UpdateSimulationApplicationResult& WithLastUpdatedAt(LastUpdatedAtT&& value) { SetLastUpdatedAt(std::forward<LastUpdatedAtT>(value)); return *this;}
132
134
137 inline const Aws::String& GetRevisionId() const { return m_revisionId; }
138 template<typename RevisionIdT = Aws::String>
139 void SetRevisionId(RevisionIdT&& value) { m_revisionIdHasBeenSet = true; m_revisionId = std::forward<RevisionIdT>(value); }
140 template<typename RevisionIdT = Aws::String>
141 UpdateSimulationApplicationResult& WithRevisionId(RevisionIdT&& value) { SetRevisionId(std::forward<RevisionIdT>(value)); return *this;}
143
145
149 inline const Environment& GetEnvironment() const { return m_environment; }
150 template<typename EnvironmentT = Environment>
151 void SetEnvironment(EnvironmentT&& value) { m_environmentHasBeenSet = true; m_environment = std::forward<EnvironmentT>(value); }
152 template<typename EnvironmentT = Environment>
153 UpdateSimulationApplicationResult& WithEnvironment(EnvironmentT&& value) { SetEnvironment(std::forward<EnvironmentT>(value)); return *this;}
155
157
158 inline const Aws::String& GetRequestId() const { return m_requestId; }
159 template<typename RequestIdT = Aws::String>
160 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
161 template<typename RequestIdT = Aws::String>
162 UpdateSimulationApplicationResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
164 private:
165
166 Aws::String m_arn;
167 bool m_arnHasBeenSet = false;
168
169 Aws::String m_name;
170 bool m_nameHasBeenSet = false;
171
172 Aws::String m_version;
173 bool m_versionHasBeenSet = false;
174
175 Aws::Vector<Source> m_sources;
176 bool m_sourcesHasBeenSet = false;
177
178 SimulationSoftwareSuite m_simulationSoftwareSuite;
179 bool m_simulationSoftwareSuiteHasBeenSet = false;
180
181 RobotSoftwareSuite m_robotSoftwareSuite;
182 bool m_robotSoftwareSuiteHasBeenSet = false;
183
184 RenderingEngine m_renderingEngine;
185 bool m_renderingEngineHasBeenSet = false;
186
187 Aws::Utils::DateTime m_lastUpdatedAt{};
188 bool m_lastUpdatedAtHasBeenSet = false;
189
190 Aws::String m_revisionId;
191 bool m_revisionIdHasBeenSet = false;
192
193 Environment m_environment;
194 bool m_environmentHasBeenSet = false;
195
196 Aws::String m_requestId;
197 bool m_requestIdHasBeenSet = false;
198 };
199
200} // namespace Model
201} // namespace RoboMaker
202} // namespace Aws
AWS_ROBOMAKER_API UpdateSimulationApplicationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateSimulationApplicationResult & WithEnvironment(EnvironmentT &&value)
UpdateSimulationApplicationResult & WithSimulationSoftwareSuite(SimulationSoftwareSuiteT &&value)
UpdateSimulationApplicationResult & WithVersion(VersionT &&value)
AWS_ROBOMAKER_API UpdateSimulationApplicationResult()=default
UpdateSimulationApplicationResult & WithRobotSoftwareSuite(RobotSoftwareSuiteT &&value)
UpdateSimulationApplicationResult & AddSources(SourcesT &&value)
AWS_ROBOMAKER_API UpdateSimulationApplicationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateSimulationApplicationResult & WithName(NameT &&value)
UpdateSimulationApplicationResult & WithSources(SourcesT &&value)
UpdateSimulationApplicationResult & WithRenderingEngine(RenderingEngineT &&value)
UpdateSimulationApplicationResult & WithLastUpdatedAt(LastUpdatedAtT &&value)
UpdateSimulationApplicationResult & WithRequestId(RequestIdT &&value)
UpdateSimulationApplicationResult & WithRevisionId(RevisionIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue