AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
StorageLocation.h
Go to the documentation of this file.
1
6#pragma once
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Panorama
22{
23namespace Model
24{
25
32 {
33 public:
38
39
43 inline const Aws::String& GetBinaryPrefixLocation() const{ return m_binaryPrefixLocation; }
44
48 inline bool BinaryPrefixLocationHasBeenSet() const { return m_binaryPrefixLocationHasBeenSet; }
49
53 inline void SetBinaryPrefixLocation(const Aws::String& value) { m_binaryPrefixLocationHasBeenSet = true; m_binaryPrefixLocation = value; }
54
58 inline void SetBinaryPrefixLocation(Aws::String&& value) { m_binaryPrefixLocationHasBeenSet = true; m_binaryPrefixLocation = std::move(value); }
59
63 inline void SetBinaryPrefixLocation(const char* value) { m_binaryPrefixLocationHasBeenSet = true; m_binaryPrefixLocation.assign(value); }
64
68 inline StorageLocation& WithBinaryPrefixLocation(const Aws::String& value) { SetBinaryPrefixLocation(value); return *this;}
69
73 inline StorageLocation& WithBinaryPrefixLocation(Aws::String&& value) { SetBinaryPrefixLocation(std::move(value)); return *this;}
74
78 inline StorageLocation& WithBinaryPrefixLocation(const char* value) { SetBinaryPrefixLocation(value); return *this;}
79
80
84 inline const Aws::String& GetBucket() const{ return m_bucket; }
85
89 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
90
94 inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; }
95
99 inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); }
100
104 inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); }
105
109 inline StorageLocation& WithBucket(const Aws::String& value) { SetBucket(value); return *this;}
110
114 inline StorageLocation& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;}
115
119 inline StorageLocation& WithBucket(const char* value) { SetBucket(value); return *this;}
120
121
125 inline const Aws::String& GetGeneratedPrefixLocation() const{ return m_generatedPrefixLocation; }
126
130 inline bool GeneratedPrefixLocationHasBeenSet() const { return m_generatedPrefixLocationHasBeenSet; }
131
135 inline void SetGeneratedPrefixLocation(const Aws::String& value) { m_generatedPrefixLocationHasBeenSet = true; m_generatedPrefixLocation = value; }
136
140 inline void SetGeneratedPrefixLocation(Aws::String&& value) { m_generatedPrefixLocationHasBeenSet = true; m_generatedPrefixLocation = std::move(value); }
141
145 inline void SetGeneratedPrefixLocation(const char* value) { m_generatedPrefixLocationHasBeenSet = true; m_generatedPrefixLocation.assign(value); }
146
151
155 inline StorageLocation& WithGeneratedPrefixLocation(Aws::String&& value) { SetGeneratedPrefixLocation(std::move(value)); return *this;}
156
160 inline StorageLocation& WithGeneratedPrefixLocation(const char* value) { SetGeneratedPrefixLocation(value); return *this;}
161
162
166 inline const Aws::String& GetManifestPrefixLocation() const{ return m_manifestPrefixLocation; }
167
171 inline bool ManifestPrefixLocationHasBeenSet() const { return m_manifestPrefixLocationHasBeenSet; }
172
176 inline void SetManifestPrefixLocation(const Aws::String& value) { m_manifestPrefixLocationHasBeenSet = true; m_manifestPrefixLocation = value; }
177
181 inline void SetManifestPrefixLocation(Aws::String&& value) { m_manifestPrefixLocationHasBeenSet = true; m_manifestPrefixLocation = std::move(value); }
182
186 inline void SetManifestPrefixLocation(const char* value) { m_manifestPrefixLocationHasBeenSet = true; m_manifestPrefixLocation.assign(value); }
187
192
196 inline StorageLocation& WithManifestPrefixLocation(Aws::String&& value) { SetManifestPrefixLocation(std::move(value)); return *this;}
197
201 inline StorageLocation& WithManifestPrefixLocation(const char* value) { SetManifestPrefixLocation(value); return *this;}
202
203
207 inline const Aws::String& GetRepoPrefixLocation() const{ return m_repoPrefixLocation; }
208
212 inline bool RepoPrefixLocationHasBeenSet() const { return m_repoPrefixLocationHasBeenSet; }
213
217 inline void SetRepoPrefixLocation(const Aws::String& value) { m_repoPrefixLocationHasBeenSet = true; m_repoPrefixLocation = value; }
218
222 inline void SetRepoPrefixLocation(Aws::String&& value) { m_repoPrefixLocationHasBeenSet = true; m_repoPrefixLocation = std::move(value); }
223
227 inline void SetRepoPrefixLocation(const char* value) { m_repoPrefixLocationHasBeenSet = true; m_repoPrefixLocation.assign(value); }
228
232 inline StorageLocation& WithRepoPrefixLocation(const Aws::String& value) { SetRepoPrefixLocation(value); return *this;}
233
237 inline StorageLocation& WithRepoPrefixLocation(Aws::String&& value) { SetRepoPrefixLocation(std::move(value)); return *this;}
238
242 inline StorageLocation& WithRepoPrefixLocation(const char* value) { SetRepoPrefixLocation(value); return *this;}
243
244 private:
245
246 Aws::String m_binaryPrefixLocation;
247 bool m_binaryPrefixLocationHasBeenSet = false;
248
249 Aws::String m_bucket;
250 bool m_bucketHasBeenSet = false;
251
252 Aws::String m_generatedPrefixLocation;
253 bool m_generatedPrefixLocationHasBeenSet = false;
254
255 Aws::String m_manifestPrefixLocation;
256 bool m_manifestPrefixLocationHasBeenSet = false;
257
258 Aws::String m_repoPrefixLocation;
259 bool m_repoPrefixLocationHasBeenSet = false;
260 };
261
262} // namespace Model
263} // namespace Panorama
264} // namespace Aws
#define AWS_PANORAMA_API
const Aws::String & GetGeneratedPrefixLocation() const
const Aws::String & GetRepoPrefixLocation() const
StorageLocation & WithBucket(const char *value)
StorageLocation & WithGeneratedPrefixLocation(const char *value)
StorageLocation & WithBucket(Aws::String &&value)
void SetGeneratedPrefixLocation(const Aws::String &value)
StorageLocation & WithGeneratedPrefixLocation(Aws::String &&value)
StorageLocation & WithBinaryPrefixLocation(Aws::String &&value)
void SetGeneratedPrefixLocation(Aws::String &&value)
StorageLocation & WithGeneratedPrefixLocation(const Aws::String &value)
const Aws::String & GetManifestPrefixLocation() const
void SetGeneratedPrefixLocation(const char *value)
AWS_PANORAMA_API StorageLocation & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetManifestPrefixLocation(const Aws::String &value)
StorageLocation & WithBinaryPrefixLocation(const char *value)
StorageLocation & WithManifestPrefixLocation(const char *value)
void SetBinaryPrefixLocation(const char *value)
void SetBucket(const Aws::String &value)
StorageLocation & WithBinaryPrefixLocation(const Aws::String &value)
void SetBucket(Aws::String &&value)
StorageLocation & WithRepoPrefixLocation(const Aws::String &value)
StorageLocation & WithBucket(const Aws::String &value)
void SetRepoPrefixLocation(Aws::String &&value)
void SetManifestPrefixLocation(Aws::String &&value)
AWS_PANORAMA_API Aws::Utils::Json::JsonValue Jsonize() const
void SetRepoPrefixLocation(const char *value)
const Aws::String & GetBucket() const
StorageLocation & WithRepoPrefixLocation(const char *value)
void SetBinaryPrefixLocation(Aws::String &&value)
void SetBinaryPrefixLocation(const Aws::String &value)
StorageLocation & WithManifestPrefixLocation(Aws::String &&value)
StorageLocation & WithRepoPrefixLocation(Aws::String &&value)
const Aws::String & GetBinaryPrefixLocation() const
void SetManifestPrefixLocation(const char *value)
StorageLocation & WithManifestPrefixLocation(const Aws::String &value)
void SetRepoPrefixLocation(const Aws::String &value)
AWS_PANORAMA_API StorageLocation(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String