AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateWorldTemplateResult.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/core/utils/memory/stl/AWSMap.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace RoboMaker
26{
27namespace Model
28{
30 {
31 public:
32 AWS_ROBOMAKER_API CreateWorldTemplateResult();
35
36
38
41 inline const Aws::String& GetArn() const{ return m_arn; }
42 inline void SetArn(const Aws::String& value) { m_arn = value; }
43 inline void SetArn(Aws::String&& value) { m_arn = std::move(value); }
44 inline void SetArn(const char* value) { m_arn.assign(value); }
45 inline CreateWorldTemplateResult& WithArn(const Aws::String& value) { SetArn(value); return *this;}
46 inline CreateWorldTemplateResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
47 inline CreateWorldTemplateResult& WithArn(const char* value) { SetArn(value); return *this;}
49
51
55 inline const Aws::String& GetClientRequestToken() const{ return m_clientRequestToken; }
56 inline void SetClientRequestToken(const Aws::String& value) { m_clientRequestToken = value; }
57 inline void SetClientRequestToken(Aws::String&& value) { m_clientRequestToken = std::move(value); }
58 inline void SetClientRequestToken(const char* value) { m_clientRequestToken.assign(value); }
60 inline CreateWorldTemplateResult& WithClientRequestToken(Aws::String&& value) { SetClientRequestToken(std::move(value)); return *this;}
61 inline CreateWorldTemplateResult& WithClientRequestToken(const char* value) { SetClientRequestToken(value); return *this;}
63
65
69 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
70 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAt = value; }
71 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAt = std::move(value); }
72 inline CreateWorldTemplateResult& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
73 inline CreateWorldTemplateResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
75
77
80 inline const Aws::String& GetName() const{ return m_name; }
81 inline void SetName(const Aws::String& value) { m_name = value; }
82 inline void SetName(Aws::String&& value) { m_name = std::move(value); }
83 inline void SetName(const char* value) { m_name.assign(value); }
84 inline CreateWorldTemplateResult& WithName(const Aws::String& value) { SetName(value); return *this;}
85 inline CreateWorldTemplateResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
86 inline CreateWorldTemplateResult& WithName(const char* value) { SetName(value); return *this;}
88
90
94 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
95 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
96 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
98 inline CreateWorldTemplateResult& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
99 inline CreateWorldTemplateResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
100 inline CreateWorldTemplateResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
101 inline CreateWorldTemplateResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
102 inline CreateWorldTemplateResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
103 inline CreateWorldTemplateResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
104 inline CreateWorldTemplateResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
105 inline CreateWorldTemplateResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
107
109
110 inline const Aws::String& GetRequestId() const{ return m_requestId; }
111 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
112 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
113 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
114 inline CreateWorldTemplateResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
115 inline CreateWorldTemplateResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
116 inline CreateWorldTemplateResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
118 private:
119
120 Aws::String m_arn;
121
122 Aws::String m_clientRequestToken;
123
124 Aws::Utils::DateTime m_createdAt;
125
126 Aws::String m_name;
127
129
130 Aws::String m_requestId;
131 };
132
133} // namespace Model
134} // namespace RoboMaker
135} // namespace Aws
AWS_ROBOMAKER_API CreateWorldTemplateResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
CreateWorldTemplateResult & AddTags(Aws::String &&key, const Aws::String &value)
CreateWorldTemplateResult & WithClientRequestToken(const Aws::String &value)
CreateWorldTemplateResult & WithRequestId(const Aws::String &value)
CreateWorldTemplateResult & WithCreatedAt(Aws::Utils::DateTime &&value)
CreateWorldTemplateResult & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateWorldTemplateResult & WithName(const Aws::String &value)
CreateWorldTemplateResult & AddTags(const Aws::String &key, Aws::String &&value)
CreateWorldTemplateResult & WithRequestId(Aws::String &&value)
void SetCreatedAt(const Aws::Utils::DateTime &value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
CreateWorldTemplateResult & AddTags(const Aws::String &key, const Aws::String &value)
CreateWorldTemplateResult & WithClientRequestToken(Aws::String &&value)
CreateWorldTemplateResult & WithClientRequestToken(const char *value)
CreateWorldTemplateResult & WithName(const char *value)
CreateWorldTemplateResult & WithArn(const char *value)
CreateWorldTemplateResult & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateWorldTemplateResult & WithName(Aws::String &&value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateWorldTemplateResult & AddTags(const char *key, const char *value)
CreateWorldTemplateResult & WithCreatedAt(const Aws::Utils::DateTime &value)
CreateWorldTemplateResult & AddTags(Aws::String &&key, Aws::String &&value)
CreateWorldTemplateResult & AddTags(const char *key, Aws::String &&value)
AWS_ROBOMAKER_API CreateWorldTemplateResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateWorldTemplateResult & WithRequestId(const char *value)
CreateWorldTemplateResult & WithArn(Aws::String &&value)
CreateWorldTemplateResult & WithArn(const Aws::String &value)
CreateWorldTemplateResult & AddTags(Aws::String &&key, const char *value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue