AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetObjectRequest.h
1
6#pragma once
7#include <aws/s3/S3_EXPORTS.h>
8#include <aws/s3/S3Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/DateTime.h>
11#include <aws/s3/model/RequestPayer.h>
12#include <aws/s3/model/ChecksumMode.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 GetObjectRequest();
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 "GetObject"; }
39
40 AWS_S3_API Aws::String SerializePayload() const override;
41
42 AWS_S3_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
43
45
46 AWS_S3_API bool ShouldValidateResponseChecksum() const override;
47
49
53 AWS_S3_API EndpointParameters GetEndpointContextParams() const override;
54
56
93 inline const Aws::String& GetBucket() const{ return m_bucket; }
94 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
95 inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; }
96 inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); }
97 inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); }
98 inline GetObjectRequest& WithBucket(const Aws::String& value) { SetBucket(value); return *this;}
99 inline GetObjectRequest& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;}
100 inline GetObjectRequest& WithBucket(const char* value) { SetBucket(value); return *this;}
102
104
115 inline const Aws::String& GetIfMatch() const{ return m_ifMatch; }
116 inline bool IfMatchHasBeenSet() const { return m_ifMatchHasBeenSet; }
117 inline void SetIfMatch(const Aws::String& value) { m_ifMatchHasBeenSet = true; m_ifMatch = value; }
118 inline void SetIfMatch(Aws::String&& value) { m_ifMatchHasBeenSet = true; m_ifMatch = std::move(value); }
119 inline void SetIfMatch(const char* value) { m_ifMatchHasBeenSet = true; m_ifMatch.assign(value); }
120 inline GetObjectRequest& WithIfMatch(const Aws::String& value) { SetIfMatch(value); return *this;}
121 inline GetObjectRequest& WithIfMatch(Aws::String&& value) { SetIfMatch(std::move(value)); return *this;}
122 inline GetObjectRequest& WithIfMatch(const char* value) { SetIfMatch(value); return *this;}
124
126
136 inline const Aws::Utils::DateTime& GetIfModifiedSince() const{ return m_ifModifiedSince; }
137 inline bool IfModifiedSinceHasBeenSet() const { return m_ifModifiedSinceHasBeenSet; }
138 inline void SetIfModifiedSince(const Aws::Utils::DateTime& value) { m_ifModifiedSinceHasBeenSet = true; m_ifModifiedSince = value; }
139 inline void SetIfModifiedSince(Aws::Utils::DateTime&& value) { m_ifModifiedSinceHasBeenSet = true; m_ifModifiedSince = std::move(value); }
141 inline GetObjectRequest& WithIfModifiedSince(Aws::Utils::DateTime&& value) { SetIfModifiedSince(std::move(value)); return *this;}
143
145
156 inline const Aws::String& GetIfNoneMatch() const{ return m_ifNoneMatch; }
157 inline bool IfNoneMatchHasBeenSet() const { return m_ifNoneMatchHasBeenSet; }
158 inline void SetIfNoneMatch(const Aws::String& value) { m_ifNoneMatchHasBeenSet = true; m_ifNoneMatch = value; }
159 inline void SetIfNoneMatch(Aws::String&& value) { m_ifNoneMatchHasBeenSet = true; m_ifNoneMatch = std::move(value); }
160 inline void SetIfNoneMatch(const char* value) { m_ifNoneMatchHasBeenSet = true; m_ifNoneMatch.assign(value); }
161 inline GetObjectRequest& WithIfNoneMatch(const Aws::String& value) { SetIfNoneMatch(value); return *this;}
162 inline GetObjectRequest& WithIfNoneMatch(Aws::String&& value) { SetIfNoneMatch(std::move(value)); return *this;}
163 inline GetObjectRequest& WithIfNoneMatch(const char* value) { SetIfNoneMatch(value); return *this;}
165
167
177 inline const Aws::Utils::DateTime& GetIfUnmodifiedSince() const{ return m_ifUnmodifiedSince; }
178 inline bool IfUnmodifiedSinceHasBeenSet() const { return m_ifUnmodifiedSinceHasBeenSet; }
179 inline void SetIfUnmodifiedSince(const Aws::Utils::DateTime& value) { m_ifUnmodifiedSinceHasBeenSet = true; m_ifUnmodifiedSince = value; }
180 inline void SetIfUnmodifiedSince(Aws::Utils::DateTime&& value) { m_ifUnmodifiedSinceHasBeenSet = true; m_ifUnmodifiedSince = std::move(value); }
182 inline GetObjectRequest& WithIfUnmodifiedSince(Aws::Utils::DateTime&& value) { SetIfUnmodifiedSince(std::move(value)); return *this;}
184
186
189 inline const Aws::String& GetKey() const{ return m_key; }
190 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
191 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
192 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
193 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
194 inline GetObjectRequest& WithKey(const Aws::String& value) { SetKey(value); return *this;}
195 inline GetObjectRequest& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
196 inline GetObjectRequest& WithKey(const char* value) { SetKey(value); return *this;}
198
200
207 inline const Aws::String& GetRange() const{ return m_range; }
208 inline bool RangeHasBeenSet() const { return m_rangeHasBeenSet; }
209 inline void SetRange(const Aws::String& value) { m_rangeHasBeenSet = true; m_range = value; }
210 inline void SetRange(Aws::String&& value) { m_rangeHasBeenSet = true; m_range = std::move(value); }
211 inline void SetRange(const char* value) { m_rangeHasBeenSet = true; m_range.assign(value); }
212 inline GetObjectRequest& WithRange(const Aws::String& value) { SetRange(value); return *this;}
213 inline GetObjectRequest& WithRange(Aws::String&& value) { SetRange(std::move(value)); return *this;}
214 inline GetObjectRequest& WithRange(const char* value) { SetRange(value); return *this;}
216
218
221 inline const Aws::String& GetResponseCacheControl() const{ return m_responseCacheControl; }
222 inline bool ResponseCacheControlHasBeenSet() const { return m_responseCacheControlHasBeenSet; }
223 inline void SetResponseCacheControl(const Aws::String& value) { m_responseCacheControlHasBeenSet = true; m_responseCacheControl = value; }
224 inline void SetResponseCacheControl(Aws::String&& value) { m_responseCacheControlHasBeenSet = true; m_responseCacheControl = std::move(value); }
225 inline void SetResponseCacheControl(const char* value) { m_responseCacheControlHasBeenSet = true; m_responseCacheControl.assign(value); }
227 inline GetObjectRequest& WithResponseCacheControl(Aws::String&& value) { SetResponseCacheControl(std::move(value)); return *this;}
228 inline GetObjectRequest& WithResponseCacheControl(const char* value) { SetResponseCacheControl(value); return *this;}
230
232
235 inline const Aws::String& GetResponseContentDisposition() const{ return m_responseContentDisposition; }
236 inline bool ResponseContentDispositionHasBeenSet() const { return m_responseContentDispositionHasBeenSet; }
237 inline void SetResponseContentDisposition(const Aws::String& value) { m_responseContentDispositionHasBeenSet = true; m_responseContentDisposition = value; }
238 inline void SetResponseContentDisposition(Aws::String&& value) { m_responseContentDispositionHasBeenSet = true; m_responseContentDisposition = std::move(value); }
239 inline void SetResponseContentDisposition(const char* value) { m_responseContentDispositionHasBeenSet = true; m_responseContentDisposition.assign(value); }
242 inline GetObjectRequest& WithResponseContentDisposition(const char* value) { SetResponseContentDisposition(value); return *this;}
244
246
249 inline const Aws::String& GetResponseContentEncoding() const{ return m_responseContentEncoding; }
250 inline bool ResponseContentEncodingHasBeenSet() const { return m_responseContentEncodingHasBeenSet; }
251 inline void SetResponseContentEncoding(const Aws::String& value) { m_responseContentEncodingHasBeenSet = true; m_responseContentEncoding = value; }
252 inline void SetResponseContentEncoding(Aws::String&& value) { m_responseContentEncodingHasBeenSet = true; m_responseContentEncoding = std::move(value); }
253 inline void SetResponseContentEncoding(const char* value) { m_responseContentEncodingHasBeenSet = true; m_responseContentEncoding.assign(value); }
255 inline GetObjectRequest& WithResponseContentEncoding(Aws::String&& value) { SetResponseContentEncoding(std::move(value)); return *this;}
256 inline GetObjectRequest& WithResponseContentEncoding(const char* value) { SetResponseContentEncoding(value); return *this;}
258
260
263 inline const Aws::String& GetResponseContentLanguage() const{ return m_responseContentLanguage; }
264 inline bool ResponseContentLanguageHasBeenSet() const { return m_responseContentLanguageHasBeenSet; }
265 inline void SetResponseContentLanguage(const Aws::String& value) { m_responseContentLanguageHasBeenSet = true; m_responseContentLanguage = value; }
266 inline void SetResponseContentLanguage(Aws::String&& value) { m_responseContentLanguageHasBeenSet = true; m_responseContentLanguage = std::move(value); }
267 inline void SetResponseContentLanguage(const char* value) { m_responseContentLanguageHasBeenSet = true; m_responseContentLanguage.assign(value); }
269 inline GetObjectRequest& WithResponseContentLanguage(Aws::String&& value) { SetResponseContentLanguage(std::move(value)); return *this;}
270 inline GetObjectRequest& WithResponseContentLanguage(const char* value) { SetResponseContentLanguage(value); return *this;}
272
274
277 inline const Aws::String& GetResponseContentType() const{ return m_responseContentType; }
278 inline bool ResponseContentTypeHasBeenSet() const { return m_responseContentTypeHasBeenSet; }
279 inline void SetResponseContentType(const Aws::String& value) { m_responseContentTypeHasBeenSet = true; m_responseContentType = value; }
280 inline void SetResponseContentType(Aws::String&& value) { m_responseContentTypeHasBeenSet = true; m_responseContentType = std::move(value); }
281 inline void SetResponseContentType(const char* value) { m_responseContentTypeHasBeenSet = true; m_responseContentType.assign(value); }
282 inline GetObjectRequest& WithResponseContentType(const Aws::String& value) { SetResponseContentType(value); return *this;}
283 inline GetObjectRequest& WithResponseContentType(Aws::String&& value) { SetResponseContentType(std::move(value)); return *this;}
284 inline GetObjectRequest& WithResponseContentType(const char* value) { SetResponseContentType(value); return *this;}
286
288
291 inline const Aws::Utils::DateTime& GetResponseExpires() const{ return m_responseExpires; }
292 inline bool ResponseExpiresHasBeenSet() const { return m_responseExpiresHasBeenSet; }
293 inline void SetResponseExpires(const Aws::Utils::DateTime& value) { m_responseExpiresHasBeenSet = true; m_responseExpires = value; }
294 inline void SetResponseExpires(Aws::Utils::DateTime&& value) { m_responseExpiresHasBeenSet = true; m_responseExpires = std::move(value); }
296 inline GetObjectRequest& WithResponseExpires(Aws::Utils::DateTime&& value) { SetResponseExpires(std::move(value)); return *this;}
298
300
319 inline const Aws::String& GetVersionId() const{ return m_versionId; }
320 inline bool VersionIdHasBeenSet() const { return m_versionIdHasBeenSet; }
321 inline void SetVersionId(const Aws::String& value) { m_versionIdHasBeenSet = true; m_versionId = value; }
322 inline void SetVersionId(Aws::String&& value) { m_versionIdHasBeenSet = true; m_versionId = std::move(value); }
323 inline void SetVersionId(const char* value) { m_versionIdHasBeenSet = true; m_versionId.assign(value); }
324 inline GetObjectRequest& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;}
325 inline GetObjectRequest& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;}
326 inline GetObjectRequest& WithVersionId(const char* value) { SetVersionId(value); return *this;}
328
330
345 inline const Aws::String& GetSSECustomerAlgorithm() const{ return m_sSECustomerAlgorithm; }
346 inline bool SSECustomerAlgorithmHasBeenSet() const { return m_sSECustomerAlgorithmHasBeenSet; }
347 inline void SetSSECustomerAlgorithm(const Aws::String& value) { m_sSECustomerAlgorithmHasBeenSet = true; m_sSECustomerAlgorithm = value; }
348 inline void SetSSECustomerAlgorithm(Aws::String&& value) { m_sSECustomerAlgorithmHasBeenSet = true; m_sSECustomerAlgorithm = std::move(value); }
349 inline void SetSSECustomerAlgorithm(const char* value) { m_sSECustomerAlgorithmHasBeenSet = true; m_sSECustomerAlgorithm.assign(value); }
351 inline GetObjectRequest& WithSSECustomerAlgorithm(Aws::String&& value) { SetSSECustomerAlgorithm(std::move(value)); return *this;}
352 inline GetObjectRequest& WithSSECustomerAlgorithm(const char* value) { SetSSECustomerAlgorithm(value); return *this;}
354
356
374 inline const Aws::String& GetSSECustomerKey() const{ return m_sSECustomerKey; }
375 inline bool SSECustomerKeyHasBeenSet() const { return m_sSECustomerKeyHasBeenSet; }
376 inline void SetSSECustomerKey(const Aws::String& value) { m_sSECustomerKeyHasBeenSet = true; m_sSECustomerKey = value; }
377 inline void SetSSECustomerKey(Aws::String&& value) { m_sSECustomerKeyHasBeenSet = true; m_sSECustomerKey = std::move(value); }
378 inline void SetSSECustomerKey(const char* value) { m_sSECustomerKeyHasBeenSet = true; m_sSECustomerKey.assign(value); }
379 inline GetObjectRequest& WithSSECustomerKey(const Aws::String& value) { SetSSECustomerKey(value); return *this;}
380 inline GetObjectRequest& WithSSECustomerKey(Aws::String&& value) { SetSSECustomerKey(std::move(value)); return *this;}
381 inline GetObjectRequest& WithSSECustomerKey(const char* value) { SetSSECustomerKey(value); return *this;}
383
385
401 inline const Aws::String& GetSSECustomerKeyMD5() const{ return m_sSECustomerKeyMD5; }
402 inline bool SSECustomerKeyMD5HasBeenSet() const { return m_sSECustomerKeyMD5HasBeenSet; }
403 inline void SetSSECustomerKeyMD5(const Aws::String& value) { m_sSECustomerKeyMD5HasBeenSet = true; m_sSECustomerKeyMD5 = value; }
404 inline void SetSSECustomerKeyMD5(Aws::String&& value) { m_sSECustomerKeyMD5HasBeenSet = true; m_sSECustomerKeyMD5 = std::move(value); }
405 inline void SetSSECustomerKeyMD5(const char* value) { m_sSECustomerKeyMD5HasBeenSet = true; m_sSECustomerKeyMD5.assign(value); }
406 inline GetObjectRequest& WithSSECustomerKeyMD5(const Aws::String& value) { SetSSECustomerKeyMD5(value); return *this;}
407 inline GetObjectRequest& WithSSECustomerKeyMD5(Aws::String&& value) { SetSSECustomerKeyMD5(std::move(value)); return *this;}
408 inline GetObjectRequest& WithSSECustomerKeyMD5(const char* value) { SetSSECustomerKeyMD5(value); return *this;}
410
412
413 inline const RequestPayer& GetRequestPayer() const{ return m_requestPayer; }
414 inline bool RequestPayerHasBeenSet() const { return m_requestPayerHasBeenSet; }
415 inline void SetRequestPayer(const RequestPayer& value) { m_requestPayerHasBeenSet = true; m_requestPayer = value; }
416 inline void SetRequestPayer(RequestPayer&& value) { m_requestPayerHasBeenSet = true; m_requestPayer = std::move(value); }
417 inline GetObjectRequest& WithRequestPayer(const RequestPayer& value) { SetRequestPayer(value); return *this;}
418 inline GetObjectRequest& WithRequestPayer(RequestPayer&& value) { SetRequestPayer(std::move(value)); return *this;}
420
422
427 inline int GetPartNumber() const{ return m_partNumber; }
428 inline bool PartNumberHasBeenSet() const { return m_partNumberHasBeenSet; }
429 inline void SetPartNumber(int value) { m_partNumberHasBeenSet = true; m_partNumber = value; }
430 inline GetObjectRequest& WithPartNumber(int value) { SetPartNumber(value); return *this;}
432
434
439 inline const Aws::String& GetExpectedBucketOwner() const{ return m_expectedBucketOwner; }
440 inline bool ExpectedBucketOwnerHasBeenSet() const { return m_expectedBucketOwnerHasBeenSet; }
441 inline void SetExpectedBucketOwner(const Aws::String& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = value; }
442 inline void SetExpectedBucketOwner(Aws::String&& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = std::move(value); }
443 inline void SetExpectedBucketOwner(const char* value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner.assign(value); }
444 inline GetObjectRequest& WithExpectedBucketOwner(const Aws::String& value) { SetExpectedBucketOwner(value); return *this;}
445 inline GetObjectRequest& WithExpectedBucketOwner(Aws::String&& value) { SetExpectedBucketOwner(std::move(value)); return *this;}
446 inline GetObjectRequest& WithExpectedBucketOwner(const char* value) { SetExpectedBucketOwner(value); return *this;}
448
450
458 inline const ChecksumMode& GetChecksumMode() const{ return m_checksumMode; }
459 inline bool ChecksumModeHasBeenSet() const { return m_checksumModeHasBeenSet; }
460 inline void SetChecksumMode(const ChecksumMode& value) { m_checksumModeHasBeenSet = true; m_checksumMode = value; }
461 inline void SetChecksumMode(ChecksumMode&& value) { m_checksumModeHasBeenSet = true; m_checksumMode = std::move(value); }
462 inline GetObjectRequest& WithChecksumMode(const ChecksumMode& value) { SetChecksumMode(value); return *this;}
463 inline GetObjectRequest& WithChecksumMode(ChecksumMode&& value) { SetChecksumMode(std::move(value)); return *this;}
465
467
468 inline const Aws::Map<Aws::String, Aws::String>& GetCustomizedAccessLogTag() const{ return m_customizedAccessLogTag; }
469 inline bool CustomizedAccessLogTagHasBeenSet() const { return m_customizedAccessLogTagHasBeenSet; }
470 inline void SetCustomizedAccessLogTag(const Aws::Map<Aws::String, Aws::String>& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag = value; }
471 inline void SetCustomizedAccessLogTag(Aws::Map<Aws::String, Aws::String>&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag = std::move(value); }
474 inline GetObjectRequest& AddCustomizedAccessLogTag(const Aws::String& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; }
475 inline GetObjectRequest& AddCustomizedAccessLogTag(Aws::String&& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; }
476 inline GetObjectRequest& AddCustomizedAccessLogTag(const Aws::String& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; }
477 inline GetObjectRequest& AddCustomizedAccessLogTag(Aws::String&& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), std::move(value)); return *this; }
478 inline GetObjectRequest& AddCustomizedAccessLogTag(const char* key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; }
479 inline GetObjectRequest& AddCustomizedAccessLogTag(Aws::String&& key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; }
480 inline GetObjectRequest& AddCustomizedAccessLogTag(const char* key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; }
482 private:
483
484 Aws::String m_bucket;
485 bool m_bucketHasBeenSet = false;
486
487 Aws::String m_ifMatch;
488 bool m_ifMatchHasBeenSet = false;
489
490 Aws::Utils::DateTime m_ifModifiedSince;
491 bool m_ifModifiedSinceHasBeenSet = false;
492
493 Aws::String m_ifNoneMatch;
494 bool m_ifNoneMatchHasBeenSet = false;
495
496 Aws::Utils::DateTime m_ifUnmodifiedSince;
497 bool m_ifUnmodifiedSinceHasBeenSet = false;
498
499 Aws::String m_key;
500 bool m_keyHasBeenSet = false;
501
502 Aws::String m_range;
503 bool m_rangeHasBeenSet = false;
504
505 Aws::String m_responseCacheControl;
506 bool m_responseCacheControlHasBeenSet = false;
507
508 Aws::String m_responseContentDisposition;
509 bool m_responseContentDispositionHasBeenSet = false;
510
511 Aws::String m_responseContentEncoding;
512 bool m_responseContentEncodingHasBeenSet = false;
513
514 Aws::String m_responseContentLanguage;
515 bool m_responseContentLanguageHasBeenSet = false;
516
517 Aws::String m_responseContentType;
518 bool m_responseContentTypeHasBeenSet = false;
519
520 Aws::Utils::DateTime m_responseExpires;
521 bool m_responseExpiresHasBeenSet = false;
522
523 Aws::String m_versionId;
524 bool m_versionIdHasBeenSet = false;
525
526 Aws::String m_sSECustomerAlgorithm;
527 bool m_sSECustomerAlgorithmHasBeenSet = false;
528
529 Aws::String m_sSECustomerKey;
530 bool m_sSECustomerKeyHasBeenSet = false;
531
532 Aws::String m_sSECustomerKeyMD5;
533 bool m_sSECustomerKeyMD5HasBeenSet = false;
534
535 RequestPayer m_requestPayer;
536 bool m_requestPayerHasBeenSet = false;
537
538 int m_partNumber;
539 bool m_partNumberHasBeenSet = false;
540
541 Aws::String m_expectedBucketOwner;
542 bool m_expectedBucketOwnerHasBeenSet = false;
543
544 ChecksumMode m_checksumMode;
545 bool m_checksumModeHasBeenSet = false;
546
547 Aws::Map<Aws::String, Aws::String> m_customizedAccessLogTag;
548 bool m_customizedAccessLogTagHasBeenSet = false;
549 };
550
551} // namespace Model
552} // namespace S3
553} // namespace Aws
const Aws::Utils::DateTime & GetIfModifiedSince() const
GetObjectRequest & WithIfNoneMatch(Aws::String &&value)
AWS_S3_API Aws::String SerializePayload() const override
GetObjectRequest & WithBucket(Aws::String &&value)
GetObjectRequest & WithSSECustomerKey(const char *value)
GetObjectRequest & AddCustomizedAccessLogTag(const char *key, Aws::String &&value)
void SetResponseContentDisposition(Aws::String &&value)
const Aws::String & GetResponseContentType() const
void SetExpectedBucketOwner(const Aws::String &value)
void SetResponseExpires(const Aws::Utils::DateTime &value)
GetObjectRequest & WithResponseContentEncoding(const char *value)
const ChecksumMode & GetChecksumMode() const
void SetResponseContentType(Aws::String &&value)
void SetBucket(Aws::String &&value)
AWS_S3_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
GetObjectRequest & WithResponseContentLanguage(Aws::String &&value)
GetObjectRequest & AddCustomizedAccessLogTag(Aws::String &&key, Aws::String &&value)
void SetResponseCacheControl(const char *value)
GetObjectRequest & WithChecksumMode(ChecksumMode &&value)
GetObjectRequest & WithResponseContentType(Aws::String &&value)
void SetSSECustomerKeyMD5(const Aws::String &value)
GetObjectRequest & WithVersionId(Aws::String &&value)
GetObjectRequest & WithSSECustomerKeyMD5(const Aws::String &value)
const Aws::String & GetBucket() const
void SetIfMatch(Aws::String &&value)
const Aws::String & GetResponseContentDisposition() const
void SetCustomizedAccessLogTag(Aws::Map< Aws::String, Aws::String > &&value)
virtual const char * GetServiceRequestName() const override
void SetResponseContentEncoding(Aws::String &&value)
const Aws::String & GetKey() const
GetObjectRequest & WithRequestPayer(RequestPayer &&value)
GetObjectRequest & AddCustomizedAccessLogTag(Aws::String &&key, const char *value)
GetObjectRequest & WithIfUnmodifiedSince(const Aws::Utils::DateTime &value)
void SetIfModifiedSince(const Aws::Utils::DateTime &value)
GetObjectRequest & WithResponseContentDisposition(Aws::String &&value)
void SetResponseCacheControl(const Aws::String &value)
GetObjectRequest & WithIfUnmodifiedSince(Aws::Utils::DateTime &&value)
const Aws::String & GetSSECustomerKey() const
GetObjectRequest & WithResponseCacheControl(const Aws::String &value)
GetObjectRequest & AddCustomizedAccessLogTag(const Aws::String &key, Aws::String &&value)
const Aws::String & GetRange() const
GetObjectRequest & WithSSECustomerAlgorithm(Aws::String &&value)
void SetRange(const Aws::String &value)
GetObjectRequest & WithRequestPayer(const RequestPayer &value)
GetObjectRequest & WithSSECustomerKey(Aws::String &&value)
const Aws::String & GetSSECustomerKeyMD5() const
GetObjectRequest & WithResponseCacheControl(const char *value)
GetObjectRequest & WithIfMatch(Aws::String &&value)
GetObjectRequest & WithExpectedBucketOwner(const Aws::String &value)
AWS_S3_API bool ShouldValidateResponseChecksum() const override
GetObjectRequest & WithKey(Aws::String &&value)
void SetIfMatch(const Aws::String &value)
void SetSSECustomerKey(const Aws::String &value)
GetObjectRequest & WithIfNoneMatch(const char *value)
void SetSSECustomerAlgorithm(Aws::String &&value)
GetObjectRequest & WithBucket(const char *value)
GetObjectRequest & WithIfMatch(const Aws::String &value)
GetObjectRequest & WithResponseContentDisposition(const Aws::String &value)
GetObjectRequest & WithVersionId(const char *value)
const Aws::Map< Aws::String, Aws::String > & GetCustomizedAccessLogTag() const
GetObjectRequest & WithResponseContentType(const Aws::String &value)
void SetChecksumMode(const ChecksumMode &value)
GetObjectRequest & WithResponseContentEncoding(Aws::String &&value)
GetObjectRequest & AddCustomizedAccessLogTag(const char *key, const char *value)
GetObjectRequest & WithIfNoneMatch(const Aws::String &value)
void SetResponseCacheControl(Aws::String &&value)
void SetSSECustomerKeyMD5(Aws::String &&value)
void SetResponseContentEncoding(const Aws::String &value)
void SetResponseContentType(const char *value)
GetObjectRequest & WithResponseContentEncoding(const Aws::String &value)
AWS_S3_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetObjectRequest & WithResponseContentLanguage(const char *value)
void SetSSECustomerKeyMD5(const char *value)
void SetRequestPayer(RequestPayer &&value)
const Aws::String & GetExpectedBucketOwner() const
void SetResponseContentLanguage(Aws::String &&value)
void SetIfUnmodifiedSince(Aws::Utils::DateTime &&value)
void SetCustomizedAccessLogTag(const Aws::Map< Aws::String, Aws::String > &value)
GetObjectRequest & WithSSECustomerKeyMD5(const char *value)
GetObjectRequest & WithSSECustomerKey(const Aws::String &value)
GetObjectRequest & WithResponseContentDisposition(const char *value)
void SetRequestPayer(const RequestPayer &value)
void SetVersionId(Aws::String &&value)
AWS_S3_API Aws::Vector< Aws::String > GetResponseChecksumAlgorithmNames() const override
const Aws::Utils::DateTime & GetResponseExpires() const
void SetIfNoneMatch(const char *value)
const Aws::String & GetResponseContentEncoding() const
void SetBucket(const Aws::String &value)
void SetSSECustomerKey(Aws::String &&value)
GetObjectRequest & AddCustomizedAccessLogTag(Aws::String &&key, const Aws::String &value)
GetObjectRequest & AddCustomizedAccessLogTag(const Aws::String &key, const Aws::String &value)
GetObjectRequest & WithSSECustomerAlgorithm(const char *value)
void SetChecksumMode(ChecksumMode &&value)
GetObjectRequest & WithResponseContentLanguage(const Aws::String &value)
void SetRange(Aws::String &&value)
GetObjectRequest & WithChecksumMode(const ChecksumMode &value)
GetObjectRequest & WithResponseExpires(Aws::Utils::DateTime &&value)
void SetVersionId(const char *value)
GetObjectRequest & WithResponseExpires(const Aws::Utils::DateTime &value)
GetObjectRequest & WithPartNumber(int value)
void SetExpectedBucketOwner(const char *value)
void SetVersionId(const Aws::String &value)
GetObjectRequest & WithSSECustomerKeyMD5(Aws::String &&value)
void SetKey(const Aws::String &value)
const Aws::String & GetResponseContentLanguage() const
GetObjectRequest & WithCustomizedAccessLogTag(const Aws::Map< Aws::String, Aws::String > &value)
GetObjectRequest & WithKey(const char *value)
GetObjectRequest & WithExpectedBucketOwner(const char *value)
const Aws::String & GetVersionId() const
const RequestPayer & GetRequestPayer() const
void SetResponseContentLanguage(const Aws::String &value)
void SetResponseExpires(Aws::Utils::DateTime &&value)
GetObjectRequest & WithIfMatch(const char *value)
void SetKey(Aws::String &&value)
AWS_S3_API EndpointParameters GetEndpointContextParams() const override
void SetResponseContentEncoding(const char *value)
void SetResponseContentType(const Aws::String &value)
const Aws::Utils::DateTime & GetIfUnmodifiedSince() const
void SetResponseContentDisposition(const Aws::String &value)
GetObjectRequest & WithResponseCacheControl(Aws::String &&value)
const Aws::String & GetIfNoneMatch() const
GetObjectRequest & WithExpectedBucketOwner(Aws::String &&value)
void SetSSECustomerAlgorithm(const char *value)
void SetBucket(const char *value)
void SetIfNoneMatch(Aws::String &&value)
const Aws::String & GetIfMatch() const
void SetSSECustomerAlgorithm(const Aws::String &value)
void SetResponseContentLanguage(const char *value)
void SetRange(const char *value)
void SetResponseContentDisposition(const char *value)
GetObjectRequest & WithRange(Aws::String &&value)
GetObjectRequest & WithCustomizedAccessLogTag(Aws::Map< Aws::String, Aws::String > &&value)
GetObjectRequest & WithBucket(const Aws::String &value)
void SetIfMatch(const char *value)
GetObjectRequest & WithIfModifiedSince(Aws::Utils::DateTime &&value)
GetObjectRequest & WithIfModifiedSince(const Aws::Utils::DateTime &value)
GetObjectRequest & WithResponseContentType(const char *value)
void SetIfNoneMatch(const Aws::String &value)
GetObjectRequest & WithKey(const Aws::String &value)
void SetIfModifiedSince(Aws::Utils::DateTime &&value)
const Aws::String & GetResponseCacheControl() const
GetObjectRequest & WithVersionId(const Aws::String &value)
void SetExpectedBucketOwner(Aws::String &&value)
GetObjectRequest & WithRange(const Aws::String &value)
const Aws::String & GetSSECustomerAlgorithm() const
void SetSSECustomerKey(const char *value)
GetObjectRequest & WithSSECustomerAlgorithm(const Aws::String &value)
void SetIfUnmodifiedSince(const Aws::Utils::DateTime &value)
GetObjectRequest & WithRange(const char *value)
Aws::Endpoint::EndpointParameters EndpointParameters
Definition S3Request.h:22
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
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
std::vector< T, Aws::Allocator< T > > Vector