AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
49 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
50 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
51 inline RobotApplicationSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
52 inline RobotApplicationSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
53 inline RobotApplicationSummary& WithName(const char* value) { SetName(value); return *this;}
55
57
60 inline const Aws::String& GetArn() const{ return m_arn; }
61 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
62 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
63 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
64 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
65 inline RobotApplicationSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
66 inline RobotApplicationSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
67 inline RobotApplicationSummary& WithArn(const char* value) { SetArn(value); return *this;}
69
71
74 inline const Aws::String& GetVersion() const{ return m_version; }
75 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
76 inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; }
77 inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); }
78 inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); }
79 inline RobotApplicationSummary& WithVersion(const Aws::String& value) { SetVersion(value); return *this;}
80 inline RobotApplicationSummary& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;}
81 inline RobotApplicationSummary& WithVersion(const char* value) { SetVersion(value); return *this;}
83
85
89 inline const Aws::Utils::DateTime& GetLastUpdatedAt() const{ return m_lastUpdatedAt; }
90 inline bool LastUpdatedAtHasBeenSet() const { return m_lastUpdatedAtHasBeenSet; }
91 inline void SetLastUpdatedAt(const Aws::Utils::DateTime& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = value; }
92 inline void SetLastUpdatedAt(Aws::Utils::DateTime&& value) { m_lastUpdatedAtHasBeenSet = true; m_lastUpdatedAt = std::move(value); }
94 inline RobotApplicationSummary& WithLastUpdatedAt(Aws::Utils::DateTime&& value) { SetLastUpdatedAt(std::move(value)); return *this;}
96
98
101 inline const RobotSoftwareSuite& GetRobotSoftwareSuite() const{ return m_robotSoftwareSuite; }
102 inline bool RobotSoftwareSuiteHasBeenSet() const { return m_robotSoftwareSuiteHasBeenSet; }
103 inline void SetRobotSoftwareSuite(const RobotSoftwareSuite& value) { m_robotSoftwareSuiteHasBeenSet = true; m_robotSoftwareSuite = value; }
104 inline void SetRobotSoftwareSuite(RobotSoftwareSuite&& value) { m_robotSoftwareSuiteHasBeenSet = true; m_robotSoftwareSuite = std::move(value); }
108 private:
109
110 Aws::String m_name;
111 bool m_nameHasBeenSet = false;
112
113 Aws::String m_arn;
114 bool m_arnHasBeenSet = false;
115
116 Aws::String m_version;
117 bool m_versionHasBeenSet = false;
118
119 Aws::Utils::DateTime m_lastUpdatedAt;
120 bool m_lastUpdatedAtHasBeenSet = false;
121
122 RobotSoftwareSuite m_robotSoftwareSuite;
123 bool m_robotSoftwareSuiteHasBeenSet = false;
124 };
125
126} // namespace Model
127} // namespace RoboMaker
128} // namespace Aws
RobotApplicationSummary & WithName(const Aws::String &value)
RobotApplicationSummary & WithArn(const Aws::String &value)
void SetRobotSoftwareSuite(const RobotSoftwareSuite &value)
RobotApplicationSummary & WithVersion(const Aws::String &value)
RobotApplicationSummary & WithLastUpdatedAt(const Aws::Utils::DateTime &value)
RobotApplicationSummary & WithVersion(Aws::String &&value)
void SetLastUpdatedAt(Aws::Utils::DateTime &&value)
void SetLastUpdatedAt(const Aws::Utils::DateTime &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 & WithLastUpdatedAt(Aws::Utils::DateTime &&value)
RobotApplicationSummary & WithVersion(const char *value)
RobotApplicationSummary & WithArn(const char *value)
RobotApplicationSummary & WithName(const char *value)
RobotApplicationSummary & WithRobotSoftwareSuite(RobotSoftwareSuite &&value)
RobotApplicationSummary & WithName(Aws::String &&value)
AWS_ROBOMAKER_API RobotApplicationSummary(Aws::Utils::Json::JsonView jsonValue)
RobotApplicationSummary & WithRobotSoftwareSuite(const RobotSoftwareSuite &value)
RobotApplicationSummary & WithArn(Aws::String &&value)
const Aws::Utils::DateTime & GetLastUpdatedAt() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue