AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
RobotApplicationSummary.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/DateTime.h>
10#include <aws/robomaker/model/RobotSoftwareSuite.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 RoboMaker
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_ROBOMAKER_API RobotApplicationSummary() = default;
39 AWS_ROBOMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetName() const { return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 template<typename NameT = Aws::String>
49 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
50 template<typename NameT = Aws::String>
51 RobotApplicationSummary& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
53
55
58 inline const Aws::String& GetArn() const { return m_arn; }
59 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
60 template<typename ArnT = Aws::String>
61 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
62 template<typename ArnT = Aws::String>
63 RobotApplicationSummary& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
65
67
70 inline const Aws::String& GetVersion() const { return m_version; }
71 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
72 template<typename VersionT = Aws::String>
73 void SetVersion(VersionT&& value) { m_versionHasBeenSet = true; m_version = std::forward<VersionT>(value); }
74 template<typename VersionT = Aws::String>
75 RobotApplicationSummary& WithVersion(VersionT&& value) { SetVersion(std::forward<VersionT>(value)); return *this;}
77
79
83 inline const Aws::Utils::DateTime& GetLastUpdatedAt() const { return m_lastUpdatedAt; }
84 inline bool LastUpdatedAtHasBeenSet() const { return m_lastUpdatedAtHasBeenSet; }
85 template<typename LastUpdatedAtT = Aws::Utils::DateTime>
86 void SetLastUpdatedAt(LastUpdatedAtT&& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = std::forward<LastUpdatedAtT>(value); }
87 template<typename LastUpdatedAtT = Aws::Utils::DateTime>
88 RobotApplicationSummary& WithLastUpdatedAt(LastUpdatedAtT&& value) { SetLastUpdatedAt(std::forward<LastUpdatedAtT>(value)); return *this;}
90
92
95 inline const RobotSoftwareSuite& GetRobotSoftwareSuite() const { return m_robotSoftwareSuite; }
96 inline bool RobotSoftwareSuiteHasBeenSet() const { return m_robotSoftwareSuiteHasBeenSet; }
97 template<typename RobotSoftwareSuiteT = RobotSoftwareSuite>
98 void SetRobotSoftwareSuite(RobotSoftwareSuiteT&& value) { m_robotSoftwareSuiteHasBeenSet = true; m_robotSoftwareSuite = std::forward<RobotSoftwareSuiteT>(value); }
99 template<typename RobotSoftwareSuiteT = RobotSoftwareSuite>
100 RobotApplicationSummary& WithRobotSoftwareSuite(RobotSoftwareSuiteT&& value) { SetRobotSoftwareSuite(std::forward<RobotSoftwareSuiteT>(value)); return *this;}
102 private:
103
104 Aws::String m_name;
105 bool m_nameHasBeenSet = false;
106
107 Aws::String m_arn;
108 bool m_arnHasBeenSet = false;
109
110 Aws::String m_version;
111 bool m_versionHasBeenSet = false;
112
113 Aws::Utils::DateTime m_lastUpdatedAt{};
114 bool m_lastUpdatedAtHasBeenSet = false;
115
116 RobotSoftwareSuite m_robotSoftwareSuite;
117 bool m_robotSoftwareSuiteHasBeenSet = false;
118 };
119
120} // namespace Model
121} // namespace RoboMaker
122} // namespace Aws
RobotApplicationSummary & WithRobotSoftwareSuite(RobotSoftwareSuiteT &&value)
void SetRobotSoftwareSuite(RobotSoftwareSuiteT &&value)
RobotApplicationSummary & WithLastUpdatedAt(LastUpdatedAtT &&value)
AWS_ROBOMAKER_API RobotApplicationSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
const RobotSoftwareSuite & GetRobotSoftwareSuite() const
AWS_ROBOMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
RobotApplicationSummary & WithName(NameT &&value)
AWS_ROBOMAKER_API RobotApplicationSummary()=default
RobotApplicationSummary & WithVersion(VersionT &&value)
RobotApplicationSummary & WithArn(ArnT &&value)
AWS_ROBOMAKER_API RobotApplicationSummary(Aws::Utils::Json::JsonView jsonValue)
const Aws::Utils::DateTime & GetLastUpdatedAt() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue