AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ArchiveWaveResult.h
1
6#pragma once
7#include <aws/mgn/Mgn_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSMap.h>
10#include <aws/mgn/model/WaveAggregatedStatus.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 mgn
26{
27namespace Model
28{
30 {
31 public:
32 AWS_MGN_API ArchiveWaveResult();
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 ArchiveWaveResult& WithArn(const Aws::String& value) { SetArn(value); return *this;}
46 inline ArchiveWaveResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
47 inline ArchiveWaveResult& WithArn(const char* value) { SetArn(value); return *this;}
49
51
54 inline const Aws::String& GetCreationDateTime() const{ return m_creationDateTime; }
55 inline void SetCreationDateTime(const Aws::String& value) { m_creationDateTime = value; }
56 inline void SetCreationDateTime(Aws::String&& value) { m_creationDateTime = std::move(value); }
57 inline void SetCreationDateTime(const char* value) { m_creationDateTime.assign(value); }
58 inline ArchiveWaveResult& WithCreationDateTime(const Aws::String& value) { SetCreationDateTime(value); return *this;}
59 inline ArchiveWaveResult& WithCreationDateTime(Aws::String&& value) { SetCreationDateTime(std::move(value)); return *this;}
60 inline ArchiveWaveResult& WithCreationDateTime(const char* value) { SetCreationDateTime(value); return *this;}
62
64
67 inline const Aws::String& GetDescription() const{ return m_description; }
68 inline void SetDescription(const Aws::String& value) { m_description = value; }
69 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
70 inline void SetDescription(const char* value) { m_description.assign(value); }
71 inline ArchiveWaveResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
72 inline ArchiveWaveResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
73 inline ArchiveWaveResult& WithDescription(const char* value) { SetDescription(value); return *this;}
75
77
80 inline bool GetIsArchived() const{ return m_isArchived; }
81 inline void SetIsArchived(bool value) { m_isArchived = value; }
82 inline ArchiveWaveResult& WithIsArchived(bool value) { SetIsArchived(value); return *this;}
84
86
89 inline const Aws::String& GetLastModifiedDateTime() const{ return m_lastModifiedDateTime; }
90 inline void SetLastModifiedDateTime(const Aws::String& value) { m_lastModifiedDateTime = value; }
91 inline void SetLastModifiedDateTime(Aws::String&& value) { m_lastModifiedDateTime = std::move(value); }
92 inline void SetLastModifiedDateTime(const char* value) { m_lastModifiedDateTime.assign(value); }
94 inline ArchiveWaveResult& WithLastModifiedDateTime(Aws::String&& value) { SetLastModifiedDateTime(std::move(value)); return *this;}
95 inline ArchiveWaveResult& WithLastModifiedDateTime(const char* value) { SetLastModifiedDateTime(value); return *this;}
97
99
102 inline const Aws::String& GetName() const{ return m_name; }
103 inline void SetName(const Aws::String& value) { m_name = value; }
104 inline void SetName(Aws::String&& value) { m_name = std::move(value); }
105 inline void SetName(const char* value) { m_name.assign(value); }
106 inline ArchiveWaveResult& WithName(const Aws::String& value) { SetName(value); return *this;}
107 inline ArchiveWaveResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
108 inline ArchiveWaveResult& WithName(const char* value) { SetName(value); return *this;}
110
112
115 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
116 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
117 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
118 inline ArchiveWaveResult& WithTags(const Aws::Map<Aws::String, Aws::String>& value) { SetTags(value); return *this;}
119 inline ArchiveWaveResult& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
120 inline ArchiveWaveResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
121 inline ArchiveWaveResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
122 inline ArchiveWaveResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
123 inline ArchiveWaveResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
124 inline ArchiveWaveResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
125 inline ArchiveWaveResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
126 inline ArchiveWaveResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
128
130
133 inline const WaveAggregatedStatus& GetWaveAggregatedStatus() const{ return m_waveAggregatedStatus; }
134 inline void SetWaveAggregatedStatus(const WaveAggregatedStatus& value) { m_waveAggregatedStatus = value; }
135 inline void SetWaveAggregatedStatus(WaveAggregatedStatus&& value) { m_waveAggregatedStatus = std::move(value); }
139
141
144 inline const Aws::String& GetWaveID() const{ return m_waveID; }
145 inline void SetWaveID(const Aws::String& value) { m_waveID = value; }
146 inline void SetWaveID(Aws::String&& value) { m_waveID = std::move(value); }
147 inline void SetWaveID(const char* value) { m_waveID.assign(value); }
148 inline ArchiveWaveResult& WithWaveID(const Aws::String& value) { SetWaveID(value); return *this;}
149 inline ArchiveWaveResult& WithWaveID(Aws::String&& value) { SetWaveID(std::move(value)); return *this;}
150 inline ArchiveWaveResult& WithWaveID(const char* value) { SetWaveID(value); return *this;}
152
154
155 inline const Aws::String& GetRequestId() const{ return m_requestId; }
156 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
157 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
158 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
159 inline ArchiveWaveResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
160 inline ArchiveWaveResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
161 inline ArchiveWaveResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
163 private:
164
165 Aws::String m_arn;
166
167 Aws::String m_creationDateTime;
168
169 Aws::String m_description;
170
171 bool m_isArchived;
172
173 Aws::String m_lastModifiedDateTime;
174
175 Aws::String m_name;
176
178
179 WaveAggregatedStatus m_waveAggregatedStatus;
180
181 Aws::String m_waveID;
182
183 Aws::String m_requestId;
184 };
185
186} // namespace Model
187} // namespace mgn
188} // namespace Aws
ArchiveWaveResult & AddTags(Aws::String &&key, Aws::String &&value)
void SetLastModifiedDateTime(Aws::String &&value)
const Aws::String & GetRequestId() const
ArchiveWaveResult & WithDescription(const char *value)
void SetWaveID(const Aws::String &value)
ArchiveWaveResult & WithRequestId(const char *value)
void SetWaveID(Aws::String &&value)
ArchiveWaveResult & AddTags(const char *key, Aws::String &&value)
const Aws::String & GetWaveID() const
ArchiveWaveResult & AddTags(const char *key, const char *value)
const Aws::String & GetDescription() const
ArchiveWaveResult & WithWaveID(const char *value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
ArchiveWaveResult & WithArn(const char *value)
ArchiveWaveResult & WithWaveAggregatedStatus(const WaveAggregatedStatus &value)
ArchiveWaveResult & AddTags(const Aws::String &key, const Aws::String &value)
void SetCreationDateTime(const char *value)
ArchiveWaveResult & WithCreationDateTime(const Aws::String &value)
ArchiveWaveResult & WithName(Aws::String &&value)
ArchiveWaveResult & WithLastModifiedDateTime(const char *value)
void SetRequestId(const Aws::String &value)
ArchiveWaveResult & WithArn(const Aws::String &value)
ArchiveWaveResult & AddTags(Aws::String &&key, const Aws::String &value)
AWS_MGN_API ArchiveWaveResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
ArchiveWaveResult & WithDescription(Aws::String &&value)
const Aws::String & GetLastModifiedDateTime() const
ArchiveWaveResult & WithLastModifiedDateTime(const Aws::String &value)
ArchiveWaveResult & WithRequestId(Aws::String &&value)
ArchiveWaveResult & WithRequestId(const Aws::String &value)
void SetName(const Aws::String &value)
ArchiveWaveResult & WithCreationDateTime(Aws::String &&value)
ArchiveWaveResult & WithWaveID(const Aws::String &value)
ArchiveWaveResult & WithArn(Aws::String &&value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
void SetDescription(const Aws::String &value)
ArchiveWaveResult & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
ArchiveWaveResult & WithCreationDateTime(const char *value)
void SetRequestId(Aws::String &&value)
ArchiveWaveResult & WithWaveAggregatedStatus(WaveAggregatedStatus &&value)
const Aws::String & GetCreationDateTime() const
ArchiveWaveResult & WithLastModifiedDateTime(Aws::String &&value)
const WaveAggregatedStatus & GetWaveAggregatedStatus() const
void SetArn(Aws::String &&value)
ArchiveWaveResult & AddTags(Aws::String &&key, const char *value)
AWS_MGN_API ArchiveWaveResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetWaveAggregatedStatus(WaveAggregatedStatus &&value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
ArchiveWaveResult & WithWaveID(Aws::String &&value)
ArchiveWaveResult & AddTags(const Aws::String &key, Aws::String &&value)
void SetLastModifiedDateTime(const char *value)
ArchiveWaveResult & WithIsArchived(bool value)
void SetName(Aws::String &&value)
const Aws::String & GetArn() const
ArchiveWaveResult & WithName(const char *value)
void SetLastModifiedDateTime(const Aws::String &value)
ArchiveWaveResult & WithName(const Aws::String &value)
void SetWaveAggregatedStatus(const WaveAggregatedStatus &value)
void SetDescription(Aws::String &&value)
ArchiveWaveResult & WithDescription(const Aws::String &value)
ArchiveWaveResult & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
void SetCreationDateTime(Aws::String &&value)
void SetArn(const Aws::String &value)
void SetDescription(const char *value)
void SetCreationDateTime(const Aws::String &value)
const Aws::String & GetName() const
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