AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UploadPartRequest.h
1
6#pragma once
7#include <aws/s3/S3_EXPORTS.h>
8#include <aws/s3/S3Request.h>
9#include <aws/core/utils/Array.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/s3/model/ChecksumAlgorithm.h>
12#include <aws/s3/model/RequestPayer.h>
13#include <aws/core/utils/memory/stl/AWSMap.h>
14#include <utility>
15
16namespace Aws
17{
18namespace Http
19{
20 class URI;
21} //namespace Http
22namespace S3
23{
24namespace Model
25{
26
30 {
31 public:
32 AWS_S3_API UploadPartRequest();
33
34 // Service request name is the Operation name which will send this request out,
35 // each operation should has unique request name, so that we can get operation's name from this request.
36 // Note: this is not true for response, multiple operations may have the same response name,
37 // so we can not get operation's name from response.
38 inline virtual const char* GetServiceRequestName() const override { return "UploadPart"; }
39
40 AWS_S3_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
41
43
44 AWS_S3_API bool HasEmbeddedError(IOStream &body, const Http::HeaderValueCollection &header) const override;
45 AWS_S3_API Aws::String GetChecksumAlgorithmName() const override;
46
50 AWS_S3_API EndpointParameters GetEndpointContextParams() const override;
51
53
86 inline const Aws::String& GetBucket() const{ return m_bucket; }
87 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
88 inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; }
89 inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); }
90 inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); }
91 inline UploadPartRequest& WithBucket(const Aws::String& value) { SetBucket(value); return *this;}
92 inline UploadPartRequest& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;}
93 inline UploadPartRequest& WithBucket(const char* value) { SetBucket(value); return *this;}
95
97
101 inline long long GetContentLength() const{ return m_contentLength; }
102 inline bool ContentLengthHasBeenSet() const { return m_contentLengthHasBeenSet; }
103 inline void SetContentLength(long long value) { m_contentLengthHasBeenSet = true; m_contentLength = value; }
104 inline UploadPartRequest& WithContentLength(long long value) { SetContentLength(value); return *this;}
106
108
114 inline const Aws::String& GetContentMD5() const{ return m_contentMD5; }
115 inline bool ContentMD5HasBeenSet() const { return m_contentMD5HasBeenSet; }
116 inline void SetContentMD5(const Aws::String& value) { m_contentMD5HasBeenSet = true; m_contentMD5 = value; }
117 inline void SetContentMD5(Aws::String&& value) { m_contentMD5HasBeenSet = true; m_contentMD5 = std::move(value); }
118 inline void SetContentMD5(const char* value) { m_contentMD5HasBeenSet = true; m_contentMD5.assign(value); }
119 inline UploadPartRequest& WithContentMD5(const Aws::String& value) { SetContentMD5(value); return *this;}
120 inline UploadPartRequest& WithContentMD5(Aws::String&& value) { SetContentMD5(std::move(value)); return *this;}
121 inline UploadPartRequest& WithContentMD5(const char* value) { SetContentMD5(value); return *this;}
123
125
139 inline const ChecksumAlgorithm& GetChecksumAlgorithm() const{ return m_checksumAlgorithm; }
140 inline bool ChecksumAlgorithmHasBeenSet() const { return m_checksumAlgorithmHasBeenSet; }
141 inline void SetChecksumAlgorithm(const ChecksumAlgorithm& value) { m_checksumAlgorithmHasBeenSet = true; m_checksumAlgorithm = value; }
142 inline void SetChecksumAlgorithm(ChecksumAlgorithm&& value) { m_checksumAlgorithmHasBeenSet = true; m_checksumAlgorithm = std::move(value); }
144 inline UploadPartRequest& WithChecksumAlgorithm(ChecksumAlgorithm&& value) { SetChecksumAlgorithm(std::move(value)); return *this;}
146
148
156 inline const Aws::String& GetChecksumCRC32() const{ return m_checksumCRC32; }
157 inline bool ChecksumCRC32HasBeenSet() const { return m_checksumCRC32HasBeenSet; }
158 inline void SetChecksumCRC32(const Aws::String& value) { m_checksumCRC32HasBeenSet = true; m_checksumCRC32 = value; SetChecksumAlgorithm(ChecksumAlgorithm::CRC32); }
159 inline void SetChecksumCRC32(Aws::String&& value) { m_checksumCRC32HasBeenSet = true; m_checksumCRC32 = std::move(value); SetChecksumAlgorithm(ChecksumAlgorithm::CRC32); }
160 inline void SetChecksumCRC32(const char* value) { m_checksumCRC32HasBeenSet = true; m_checksumCRC32.assign(value); SetChecksumAlgorithm(ChecksumAlgorithm::CRC32); }
161 inline UploadPartRequest& WithChecksumCRC32(const Aws::String& value) { SetChecksumCRC32(value); return *this;}
162 inline UploadPartRequest& WithChecksumCRC32(Aws::String&& value) { SetChecksumCRC32(std::move(value)); return *this;}
163 inline UploadPartRequest& WithChecksumCRC32(const char* value) { SetChecksumCRC32(value); return *this;}
165
167
175 inline const Aws::String& GetChecksumCRC32C() const{ return m_checksumCRC32C; }
176 inline bool ChecksumCRC32CHasBeenSet() const { return m_checksumCRC32CHasBeenSet; }
177 inline void SetChecksumCRC32C(const Aws::String& value) { m_checksumCRC32CHasBeenSet = true; m_checksumCRC32C = value; SetChecksumAlgorithm(ChecksumAlgorithm::CRC32C); }
178 inline void SetChecksumCRC32C(Aws::String&& value) { m_checksumCRC32CHasBeenSet = true; m_checksumCRC32C = std::move(value); SetChecksumAlgorithm(ChecksumAlgorithm::CRC32C); }
179 inline void SetChecksumCRC32C(const char* value) { m_checksumCRC32CHasBeenSet = true; m_checksumCRC32C.assign(value); SetChecksumAlgorithm(ChecksumAlgorithm::CRC32C); }
180 inline UploadPartRequest& WithChecksumCRC32C(const Aws::String& value) { SetChecksumCRC32C(value); return *this;}
181 inline UploadPartRequest& WithChecksumCRC32C(Aws::String&& value) { SetChecksumCRC32C(std::move(value)); return *this;}
182 inline UploadPartRequest& WithChecksumCRC32C(const char* value) { SetChecksumCRC32C(value); return *this;}
184
186
193 inline const Aws::String& GetChecksumSHA1() const{ return m_checksumSHA1; }
194 inline bool ChecksumSHA1HasBeenSet() const { return m_checksumSHA1HasBeenSet; }
195 inline void SetChecksumSHA1(const Aws::String& value) { m_checksumSHA1HasBeenSet = true; m_checksumSHA1 = value; SetChecksumAlgorithm(ChecksumAlgorithm::SHA1); }
196 inline void SetChecksumSHA1(Aws::String&& value) { m_checksumSHA1HasBeenSet = true; m_checksumSHA1 = std::move(value); SetChecksumAlgorithm(ChecksumAlgorithm::SHA1); }
197 inline void SetChecksumSHA1(const char* value) { m_checksumSHA1HasBeenSet = true; m_checksumSHA1.assign(value); SetChecksumAlgorithm(ChecksumAlgorithm::SHA1); }
198 inline UploadPartRequest& WithChecksumSHA1(const Aws::String& value) { SetChecksumSHA1(value); return *this;}
199 inline UploadPartRequest& WithChecksumSHA1(Aws::String&& value) { SetChecksumSHA1(std::move(value)); return *this;}
200 inline UploadPartRequest& WithChecksumSHA1(const char* value) { SetChecksumSHA1(value); return *this;}
202
204
212 inline const Aws::String& GetChecksumSHA256() const{ return m_checksumSHA256; }
213 inline bool ChecksumSHA256HasBeenSet() const { return m_checksumSHA256HasBeenSet; }
214 inline void SetChecksumSHA256(const Aws::String& value) { m_checksumSHA256HasBeenSet = true; m_checksumSHA256 = value; SetChecksumAlgorithm(ChecksumAlgorithm::SHA256); }
215 inline void SetChecksumSHA256(Aws::String&& value) { m_checksumSHA256HasBeenSet = true; m_checksumSHA256 = std::move(value); SetChecksumAlgorithm(ChecksumAlgorithm::SHA256); }
216 inline void SetChecksumSHA256(const char* value) { m_checksumSHA256HasBeenSet = true; m_checksumSHA256.assign(value); SetChecksumAlgorithm(ChecksumAlgorithm::SHA256); }
217 inline UploadPartRequest& WithChecksumSHA256(const Aws::String& value) { SetChecksumSHA256(value); return *this;}
218 inline UploadPartRequest& WithChecksumSHA256(Aws::String&& value) { SetChecksumSHA256(std::move(value)); return *this;}
219 inline UploadPartRequest& WithChecksumSHA256(const char* value) { SetChecksumSHA256(value); return *this;}
221
223
226 inline const Aws::String& GetKey() const{ return m_key; }
227 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
228 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
229 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
230 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
231 inline UploadPartRequest& WithKey(const Aws::String& value) { SetKey(value); return *this;}
232 inline UploadPartRequest& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
233 inline UploadPartRequest& WithKey(const char* value) { SetKey(value); return *this;}
235
237
241 inline int GetPartNumber() const{ return m_partNumber; }
242 inline bool PartNumberHasBeenSet() const { return m_partNumberHasBeenSet; }
243 inline void SetPartNumber(int value) { m_partNumberHasBeenSet = true; m_partNumber = value; }
244 inline UploadPartRequest& WithPartNumber(int value) { SetPartNumber(value); return *this;}
246
248
251 inline const Aws::String& GetUploadId() const{ return m_uploadId; }
252 inline bool UploadIdHasBeenSet() const { return m_uploadIdHasBeenSet; }
253 inline void SetUploadId(const Aws::String& value) { m_uploadIdHasBeenSet = true; m_uploadId = value; }
254 inline void SetUploadId(Aws::String&& value) { m_uploadIdHasBeenSet = true; m_uploadId = std::move(value); }
255 inline void SetUploadId(const char* value) { m_uploadIdHasBeenSet = true; m_uploadId.assign(value); }
256 inline UploadPartRequest& WithUploadId(const Aws::String& value) { SetUploadId(value); return *this;}
257 inline UploadPartRequest& WithUploadId(Aws::String&& value) { SetUploadId(std::move(value)); return *this;}
258 inline UploadPartRequest& WithUploadId(const char* value) { SetUploadId(value); return *this;}
260
262
267 inline const Aws::String& GetSSECustomerAlgorithm() const{ return m_sSECustomerAlgorithm; }
268 inline bool SSECustomerAlgorithmHasBeenSet() const { return m_sSECustomerAlgorithmHasBeenSet; }
269 inline void SetSSECustomerAlgorithm(const Aws::String& value) { m_sSECustomerAlgorithmHasBeenSet = true; m_sSECustomerAlgorithm = value; }
270 inline void SetSSECustomerAlgorithm(Aws::String&& value) { m_sSECustomerAlgorithmHasBeenSet = true; m_sSECustomerAlgorithm = std::move(value); }
271 inline void SetSSECustomerAlgorithm(const char* value) { m_sSECustomerAlgorithmHasBeenSet = true; m_sSECustomerAlgorithm.assign(value); }
273 inline UploadPartRequest& WithSSECustomerAlgorithm(Aws::String&& value) { SetSSECustomerAlgorithm(std::move(value)); return *this;}
274 inline UploadPartRequest& WithSSECustomerAlgorithm(const char* value) { SetSSECustomerAlgorithm(value); return *this;}
276
278
288 inline const Aws::String& GetSSECustomerKey() const{ return m_sSECustomerKey; }
289 inline bool SSECustomerKeyHasBeenSet() const { return m_sSECustomerKeyHasBeenSet; }
290 inline void SetSSECustomerKey(const Aws::String& value) { m_sSECustomerKeyHasBeenSet = true; m_sSECustomerKey = value; }
291 inline void SetSSECustomerKey(Aws::String&& value) { m_sSECustomerKeyHasBeenSet = true; m_sSECustomerKey = std::move(value); }
292 inline void SetSSECustomerKey(const char* value) { m_sSECustomerKeyHasBeenSet = true; m_sSECustomerKey.assign(value); }
293 inline UploadPartRequest& WithSSECustomerKey(const Aws::String& value) { SetSSECustomerKey(value); return *this;}
294 inline UploadPartRequest& WithSSECustomerKey(Aws::String&& value) { SetSSECustomerKey(std::move(value)); return *this;}
295 inline UploadPartRequest& WithSSECustomerKey(const char* value) { SetSSECustomerKey(value); return *this;}
297
299
305 inline const Aws::String& GetSSECustomerKeyMD5() const{ return m_sSECustomerKeyMD5; }
306 inline bool SSECustomerKeyMD5HasBeenSet() const { return m_sSECustomerKeyMD5HasBeenSet; }
307 inline void SetSSECustomerKeyMD5(const Aws::String& value) { m_sSECustomerKeyMD5HasBeenSet = true; m_sSECustomerKeyMD5 = value; }
308 inline void SetSSECustomerKeyMD5(Aws::String&& value) { m_sSECustomerKeyMD5HasBeenSet = true; m_sSECustomerKeyMD5 = std::move(value); }
309 inline void SetSSECustomerKeyMD5(const char* value) { m_sSECustomerKeyMD5HasBeenSet = true; m_sSECustomerKeyMD5.assign(value); }
310 inline UploadPartRequest& WithSSECustomerKeyMD5(const Aws::String& value) { SetSSECustomerKeyMD5(value); return *this;}
311 inline UploadPartRequest& WithSSECustomerKeyMD5(Aws::String&& value) { SetSSECustomerKeyMD5(std::move(value)); return *this;}
312 inline UploadPartRequest& WithSSECustomerKeyMD5(const char* value) { SetSSECustomerKeyMD5(value); return *this;}
314
316
317 inline const RequestPayer& GetRequestPayer() const{ return m_requestPayer; }
318 inline bool RequestPayerHasBeenSet() const { return m_requestPayerHasBeenSet; }
319 inline void SetRequestPayer(const RequestPayer& value) { m_requestPayerHasBeenSet = true; m_requestPayer = value; }
320 inline void SetRequestPayer(RequestPayer&& value) { m_requestPayerHasBeenSet = true; m_requestPayer = std::move(value); }
321 inline UploadPartRequest& WithRequestPayer(const RequestPayer& value) { SetRequestPayer(value); return *this;}
322 inline UploadPartRequest& WithRequestPayer(RequestPayer&& value) { SetRequestPayer(std::move(value)); return *this;}
324
326
331 inline const Aws::String& GetExpectedBucketOwner() const{ return m_expectedBucketOwner; }
332 inline bool ExpectedBucketOwnerHasBeenSet() const { return m_expectedBucketOwnerHasBeenSet; }
333 inline void SetExpectedBucketOwner(const Aws::String& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = value; }
334 inline void SetExpectedBucketOwner(Aws::String&& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = std::move(value); }
335 inline void SetExpectedBucketOwner(const char* value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner.assign(value); }
337 inline UploadPartRequest& WithExpectedBucketOwner(Aws::String&& value) { SetExpectedBucketOwner(std::move(value)); return *this;}
338 inline UploadPartRequest& WithExpectedBucketOwner(const char* value) { SetExpectedBucketOwner(value); return *this;}
340
342
343 inline const Aws::Map<Aws::String, Aws::String>& GetCustomizedAccessLogTag() const{ return m_customizedAccessLogTag; }
344 inline bool CustomizedAccessLogTagHasBeenSet() const { return m_customizedAccessLogTagHasBeenSet; }
345 inline void SetCustomizedAccessLogTag(const Aws::Map<Aws::String, Aws::String>& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag = value; }
346 inline void SetCustomizedAccessLogTag(Aws::Map<Aws::String, Aws::String>&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag = std::move(value); }
349 inline UploadPartRequest& AddCustomizedAccessLogTag(const Aws::String& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; }
350 inline UploadPartRequest& AddCustomizedAccessLogTag(Aws::String&& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; }
351 inline UploadPartRequest& AddCustomizedAccessLogTag(const Aws::String& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; }
352 inline UploadPartRequest& AddCustomizedAccessLogTag(Aws::String&& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), std::move(value)); return *this; }
353 inline UploadPartRequest& AddCustomizedAccessLogTag(const char* key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; }
354 inline UploadPartRequest& AddCustomizedAccessLogTag(Aws::String&& key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; }
355 inline UploadPartRequest& AddCustomizedAccessLogTag(const char* key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; }
357 private:
358
359
360 Aws::String m_bucket;
361 bool m_bucketHasBeenSet = false;
362
363 long long m_contentLength;
364 bool m_contentLengthHasBeenSet = false;
365
366 Aws::String m_contentMD5;
367 bool m_contentMD5HasBeenSet = false;
368
369 ChecksumAlgorithm m_checksumAlgorithm;
370 bool m_checksumAlgorithmHasBeenSet = false;
371
372 Aws::String m_checksumCRC32;
373 bool m_checksumCRC32HasBeenSet = false;
374
375 Aws::String m_checksumCRC32C;
376 bool m_checksumCRC32CHasBeenSet = false;
377
378 Aws::String m_checksumSHA1;
379 bool m_checksumSHA1HasBeenSet = false;
380
381 Aws::String m_checksumSHA256;
382 bool m_checksumSHA256HasBeenSet = false;
383
384 Aws::String m_key;
385 bool m_keyHasBeenSet = false;
386
387 int m_partNumber;
388 bool m_partNumberHasBeenSet = false;
389
390 Aws::String m_uploadId;
391 bool m_uploadIdHasBeenSet = false;
392
393 Aws::String m_sSECustomerAlgorithm;
394 bool m_sSECustomerAlgorithmHasBeenSet = false;
395
396 Aws::String m_sSECustomerKey;
397 bool m_sSECustomerKeyHasBeenSet = false;
398
399 Aws::String m_sSECustomerKeyMD5;
400 bool m_sSECustomerKeyMD5HasBeenSet = false;
401
402 RequestPayer m_requestPayer;
403 bool m_requestPayerHasBeenSet = false;
404
405 Aws::String m_expectedBucketOwner;
406 bool m_expectedBucketOwnerHasBeenSet = false;
407
408 Aws::Map<Aws::String, Aws::String> m_customizedAccessLogTag;
409 bool m_customizedAccessLogTagHasBeenSet = false;
410 };
411
412} // namespace Model
413} // namespace S3
414} // namespace Aws
Aws::Vector< Aws::Endpoint::EndpointParameter > EndpointParameters
void SetExpectedBucketOwner(Aws::String &&value)
UploadPartRequest & WithCustomizedAccessLogTag(const Aws::Map< Aws::String, Aws::String > &value)
UploadPartRequest & WithSSECustomerKeyMD5(const Aws::String &value)
UploadPartRequest & WithBucket(const Aws::String &value)
void SetChecksumCRC32C(const char *value)
const Aws::String & GetExpectedBucketOwner() const
UploadPartRequest & WithContentMD5(const Aws::String &value)
UploadPartRequest & WithChecksumSHA256(const char *value)
const Aws::String & GetUploadId() const
UploadPartRequest & WithChecksumSHA1(Aws::String &&value)
void SetRequestPayer(RequestPayer &&value)
UploadPartRequest & WithSSECustomerAlgorithm(const char *value)
void SetChecksumAlgorithm(ChecksumAlgorithm &&value)
const Aws::Map< Aws::String, Aws::String > & GetCustomizedAccessLogTag() const
void SetSSECustomerAlgorithm(const char *value)
void SetBucket(const char *value)
UploadPartRequest & WithSSECustomerKey(Aws::String &&value)
UploadPartRequest & WithContentMD5(const char *value)
UploadPartRequest & WithChecksumCRC32(const char *value)
UploadPartRequest & WithSSECustomerKey(const Aws::String &value)
void SetUploadId(Aws::String &&value)
void SetChecksumCRC32(Aws::String &&value)
UploadPartRequest & WithChecksumAlgorithm(const ChecksumAlgorithm &value)
UploadPartRequest & WithChecksumSHA256(const Aws::String &value)
UploadPartRequest & WithKey(Aws::String &&value)
void SetChecksumCRC32C(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
UploadPartRequest & WithSSECustomerKeyMD5(Aws::String &&value)
void SetUploadId(const char *value)
UploadPartRequest & WithUploadId(const Aws::String &value)
void SetContentMD5(Aws::String &&value)
UploadPartRequest & WithSSECustomerAlgorithm(const Aws::String &value)
void SetChecksumSHA1(const char *value)
UploadPartRequest & WithContentMD5(Aws::String &&value)
UploadPartRequest & WithBucket(const char *value)
UploadPartRequest & AddCustomizedAccessLogTag(Aws::String &&key, const char *value)
void SetExpectedBucketOwner(const char *value)
void SetKey(Aws::String &&value)
UploadPartRequest & WithSSECustomerKeyMD5(const char *value)
UploadPartRequest & WithPartNumber(int value)
UploadPartRequest & WithUploadId(const char *value)
const RequestPayer & GetRequestPayer() const
UploadPartRequest & WithCustomizedAccessLogTag(Aws::Map< Aws::String, Aws::String > &&value)
UploadPartRequest & WithChecksumCRC32C(const Aws::String &value)
void SetCustomizedAccessLogTag(const Aws::Map< Aws::String, Aws::String > &value)
void SetContentMD5(const Aws::String &value)
UploadPartRequest & WithRequestPayer(RequestPayer &&value)
UploadPartRequest & AddCustomizedAccessLogTag(const Aws::String &key, Aws::String &&value)
UploadPartRequest & WithUploadId(Aws::String &&value)
AWS_S3_API Aws::String GetChecksumAlgorithmName() const override
void SetSSECustomerKey(const Aws::String &value)
UploadPartRequest & WithBucket(Aws::String &&value)
UploadPartRequest & WithChecksumCRC32(const Aws::String &value)
const Aws::String & GetSSECustomerKey() const
UploadPartRequest & WithChecksumCRC32(Aws::String &&value)
const Aws::String & GetBucket() const
void SetSSECustomerKey(Aws::String &&value)
void SetExpectedBucketOwner(const Aws::String &value)
void SetRequestPayer(const RequestPayer &value)
void SetSSECustomerKeyMD5(Aws::String &&value)
void SetUploadId(const Aws::String &value)
void SetChecksumCRC32(const Aws::String &value)
UploadPartRequest & WithKey(const char *value)
void SetSSECustomerAlgorithm(const Aws::String &value)
UploadPartRequest & WithSSECustomerAlgorithm(Aws::String &&value)
UploadPartRequest & WithChecksumSHA1(const Aws::String &value)
const Aws::String & GetContentMD5() const
void SetCustomizedAccessLogTag(Aws::Map< Aws::String, Aws::String > &&value)
void SetChecksumSHA1(Aws::String &&value)
UploadPartRequest & WithExpectedBucketOwner(const char *value)
UploadPartRequest & WithChecksumSHA256(Aws::String &&value)
void SetSSECustomerKeyMD5(const Aws::String &value)
void SetBucket(const Aws::String &value)
UploadPartRequest & WithExpectedBucketOwner(const Aws::String &value)
void SetContentMD5(const char *value)
UploadPartRequest & WithContentLength(long long value)
UploadPartRequest & WithSSECustomerKey(const char *value)
const Aws::String & GetChecksumCRC32C() const
void SetChecksumAlgorithm(const ChecksumAlgorithm &value)
const Aws::String & GetKey() const
AWS_S3_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
void SetSSECustomerKeyMD5(const char *value)
AWS_S3_API EndpointParameters GetEndpointContextParams() const override
void SetSSECustomerKey(const char *value)
UploadPartRequest & AddCustomizedAccessLogTag(Aws::String &&key, Aws::String &&value)
void SetChecksumSHA256(const char *value)
AWS_S3_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
const Aws::String & GetSSECustomerAlgorithm() const
void SetKey(const Aws::String &value)
UploadPartRequest & WithRequestPayer(const RequestPayer &value)
void SetChecksumCRC32C(const Aws::String &value)
UploadPartRequest & AddCustomizedAccessLogTag(Aws::String &&key, const Aws::String &value)
UploadPartRequest & WithChecksumCRC32C(const char *value)
UploadPartRequest & AddCustomizedAccessLogTag(const Aws::String &key, const Aws::String &value)
UploadPartRequest & WithExpectedBucketOwner(Aws::String &&value)
void SetChecksumSHA1(const Aws::String &value)
UploadPartRequest & AddCustomizedAccessLogTag(const char *key, Aws::String &&value)
void SetChecksumSHA256(const Aws::String &value)
void SetBucket(Aws::String &&value)
void SetChecksumCRC32(const char *value)
const Aws::String & GetSSECustomerKeyMD5() const
UploadPartRequest & AddCustomizedAccessLogTag(const char *key, const char *value)
UploadPartRequest & WithChecksumCRC32C(Aws::String &&value)
UploadPartRequest & WithChecksumAlgorithm(ChecksumAlgorithm &&value)
const Aws::String & GetChecksumSHA256() const
UploadPartRequest & WithKey(const Aws::String &value)
void SetSSECustomerAlgorithm(Aws::String &&value)
const Aws::String & GetChecksumCRC32() const
const ChecksumAlgorithm & GetChecksumAlgorithm() const
UploadPartRequest & WithChecksumSHA1(const char *value)
const Aws::String & GetChecksumSHA1() const
AWS_S3_API bool HasEmbeddedError(IOStream &body, const Http::HeaderValueCollection &header) const override
void SetChecksumSHA256(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_iostream< char, std::char_traits< char > > IOStream
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String