AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SceneSummary.h
1
6#pragma once
7#include <aws/iottwinmaker/IoTTwinMaker_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 IoTTwinMaker
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_IOTTWINMAKER_API SceneSummary();
37 AWS_IOTTWINMAKER_API SceneSummary(Aws::Utils::Json::JsonView jsonValue);
38 AWS_IOTTWINMAKER_API SceneSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_IOTTWINMAKER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetSceneId() const{ return m_sceneId; }
47 inline bool SceneIdHasBeenSet() const { return m_sceneIdHasBeenSet; }
48 inline void SetSceneId(const Aws::String& value) { m_sceneIdHasBeenSet = true; m_sceneId = value; }
49 inline void SetSceneId(Aws::String&& value) { m_sceneIdHasBeenSet = true; m_sceneId = std::move(value); }
50 inline void SetSceneId(const char* value) { m_sceneIdHasBeenSet = true; m_sceneId.assign(value); }
51 inline SceneSummary& WithSceneId(const Aws::String& value) { SetSceneId(value); return *this;}
52 inline SceneSummary& WithSceneId(Aws::String&& value) { SetSceneId(std::move(value)); return *this;}
53 inline SceneSummary& WithSceneId(const char* value) { SetSceneId(value); return *this;}
55
57
61 inline const Aws::String& GetContentLocation() const{ return m_contentLocation; }
62 inline bool ContentLocationHasBeenSet() const { return m_contentLocationHasBeenSet; }
63 inline void SetContentLocation(const Aws::String& value) { m_contentLocationHasBeenSet = true; m_contentLocation = value; }
64 inline void SetContentLocation(Aws::String&& value) { m_contentLocationHasBeenSet = true; m_contentLocation = std::move(value); }
65 inline void SetContentLocation(const char* value) { m_contentLocationHasBeenSet = true; m_contentLocation.assign(value); }
66 inline SceneSummary& WithContentLocation(const Aws::String& value) { SetContentLocation(value); return *this;}
67 inline SceneSummary& WithContentLocation(Aws::String&& value) { SetContentLocation(std::move(value)); return *this;}
68 inline SceneSummary& WithContentLocation(const char* value) { SetContentLocation(value); return *this;}
70
72
75 inline const Aws::String& GetArn() const{ return m_arn; }
76 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
77 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
78 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
79 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
80 inline SceneSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
81 inline SceneSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
82 inline SceneSummary& WithArn(const char* value) { SetArn(value); return *this;}
84
86
89 inline const Aws::Utils::DateTime& GetCreationDateTime() const{ return m_creationDateTime; }
90 inline bool CreationDateTimeHasBeenSet() const { return m_creationDateTimeHasBeenSet; }
91 inline void SetCreationDateTime(const Aws::Utils::DateTime& value) { m_creationDateTimeHasBeenSet = true; m_creationDateTime = value; }
92 inline void SetCreationDateTime(Aws::Utils::DateTime&& value) { m_creationDateTimeHasBeenSet = true; m_creationDateTime = std::move(value); }
93 inline SceneSummary& WithCreationDateTime(const Aws::Utils::DateTime& value) { SetCreationDateTime(value); return *this;}
94 inline SceneSummary& WithCreationDateTime(Aws::Utils::DateTime&& value) { SetCreationDateTime(std::move(value)); return *this;}
96
98
101 inline const Aws::Utils::DateTime& GetUpdateDateTime() const{ return m_updateDateTime; }
102 inline bool UpdateDateTimeHasBeenSet() const { return m_updateDateTimeHasBeenSet; }
103 inline void SetUpdateDateTime(const Aws::Utils::DateTime& value) { m_updateDateTimeHasBeenSet = true; m_updateDateTime = value; }
104 inline void SetUpdateDateTime(Aws::Utils::DateTime&& value) { m_updateDateTimeHasBeenSet = true; m_updateDateTime = std::move(value); }
105 inline SceneSummary& WithUpdateDateTime(const Aws::Utils::DateTime& value) { SetUpdateDateTime(value); return *this;}
106 inline SceneSummary& WithUpdateDateTime(Aws::Utils::DateTime&& value) { SetUpdateDateTime(std::move(value)); return *this;}
108
110
113 inline const Aws::String& GetDescription() const{ return m_description; }
114 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
115 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
116 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
117 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
118 inline SceneSummary& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
119 inline SceneSummary& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
120 inline SceneSummary& WithDescription(const char* value) { SetDescription(value); return *this;}
122 private:
123
124 Aws::String m_sceneId;
125 bool m_sceneIdHasBeenSet = false;
126
127 Aws::String m_contentLocation;
128 bool m_contentLocationHasBeenSet = false;
129
130 Aws::String m_arn;
131 bool m_arnHasBeenSet = false;
132
133 Aws::Utils::DateTime m_creationDateTime;
134 bool m_creationDateTimeHasBeenSet = false;
135
136 Aws::Utils::DateTime m_updateDateTime;
137 bool m_updateDateTimeHasBeenSet = false;
138
139 Aws::String m_description;
140 bool m_descriptionHasBeenSet = false;
141 };
142
143} // namespace Model
144} // namespace IoTTwinMaker
145} // namespace Aws
AWS_IOTTWINMAKER_API SceneSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetContentLocation() const
void SetDescription(const Aws::String &value)
SceneSummary & WithCreationDateTime(const Aws::Utils::DateTime &value)
SceneSummary & WithDescription(const char *value)
void SetUpdateDateTime(Aws::Utils::DateTime &&value)
SceneSummary & WithUpdateDateTime(const Aws::Utils::DateTime &value)
void SetCreationDateTime(const Aws::Utils::DateTime &value)
const Aws::String & GetDescription() const
void SetArn(const Aws::String &value)
SceneSummary & WithContentLocation(Aws::String &&value)
void SetSceneId(const char *value)
void SetSceneId(Aws::String &&value)
void SetDescription(const char *value)
SceneSummary & WithArn(const char *value)
AWS_IOTTWINMAKER_API SceneSummary()
AWS_IOTTWINMAKER_API Aws::Utils::Json::JsonValue Jsonize() const
void SetSceneId(const Aws::String &value)
SceneSummary & WithDescription(const Aws::String &value)
SceneSummary & WithSceneId(const char *value)
SceneSummary & WithSceneId(Aws::String &&value)
void SetUpdateDateTime(const Aws::Utils::DateTime &value)
const Aws::String & GetSceneId() const
void SetContentLocation(const Aws::String &value)
void SetContentLocation(const char *value)
void SetArn(Aws::String &&value)
void SetCreationDateTime(Aws::Utils::DateTime &&value)
SceneSummary & WithSceneId(const Aws::String &value)
SceneSummary & WithContentLocation(const Aws::String &value)
const Aws::String & GetArn() const
const Aws::Utils::DateTime & GetCreationDateTime() const
const Aws::Utils::DateTime & GetUpdateDateTime() const
SceneSummary & WithArn(Aws::String &&value)
void SetDescription(Aws::String &&value)
SceneSummary & WithDescription(Aws::String &&value)
SceneSummary & WithCreationDateTime(Aws::Utils::DateTime &&value)
void SetContentLocation(Aws::String &&value)
SceneSummary & WithArn(const Aws::String &value)
AWS_IOTTWINMAKER_API SceneSummary(Aws::Utils::Json::JsonView jsonValue)
SceneSummary & WithUpdateDateTime(Aws::Utils::DateTime &&value)
SceneSummary & WithContentLocation(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue