/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/s3/S3_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <aws/s3/model/ArchiveStatus.h> #include <aws/core/utils/DateTime.h> #include <aws/s3/model/ServerSideEncryption.h> #include <aws/core/utils/memory/stl/AWSMap.h> #include <aws/s3/model/StorageClass.h> #include <aws/s3/model/RequestCharged.h> #include <aws/s3/model/ReplicationStatus.h> #include <aws/s3/model/ObjectLockMode.h> #include <aws/s3/model/ObjectLockLegalHoldStatus.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace S3 { namespace Model { class HeadObjectResult { public: AWS_S3_API HeadObjectResult(); AWS_S3_API HeadObjectResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); AWS_S3_API HeadObjectResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result); /** * <p>Specifies whether the object retrieved was (true) or was not (false) a Delete * Marker. If false, this response header does not appear in the response.</p> */ inline bool GetDeleteMarker() const{ return m_deleteMarker; } /** * <p>Specifies whether the object retrieved was (true) or was not (false) a Delete * Marker. If false, this response header does not appear in the response.</p> */ inline void SetDeleteMarker(bool value) { m_deleteMarker = value; } /** * <p>Specifies whether the object retrieved was (true) or was not (false) a Delete * Marker. If false, this response header does not appear in the response.</p> */ inline HeadObjectResult& WithDeleteMarker(bool value) { SetDeleteMarker(value); return *this;} /** * <p>Indicates that a range of bytes was specified.</p> */ inline const Aws::String& GetAcceptRanges() const{ return m_acceptRanges; } /** * <p>Indicates that a range of bytes was specified.</p> */ inline void SetAcceptRanges(const Aws::String& value) { m_acceptRanges = value; } /** * <p>Indicates that a range of bytes was specified.</p> */ inline void SetAcceptRanges(Aws::String&& value) { m_acceptRanges = std::move(value); } /** * <p>Indicates that a range of bytes was specified.</p> */ inline void SetAcceptRanges(const char* value) { m_acceptRanges.assign(value); } /** * <p>Indicates that a range of bytes was specified.</p> */ inline HeadObjectResult& WithAcceptRanges(const Aws::String& value) { SetAcceptRanges(value); return *this;} /** * <p>Indicates that a range of bytes was specified.</p> */ inline HeadObjectResult& WithAcceptRanges(Aws::String&& value) { SetAcceptRanges(std::move(value)); return *this;} /** * <p>Indicates that a range of bytes was specified.</p> */ inline HeadObjectResult& WithAcceptRanges(const char* value) { SetAcceptRanges(value); return *this;} /** * <p>If the object expiration is configured (see PUT Bucket lifecycle), the * response includes this header. It includes the <code>expiry-date</code> and * <code>rule-id</code> key-value pairs providing object expiration information. * The value of the <code>rule-id</code> is URL-encoded.</p> */ inline const Aws::String& GetExpiration() const{ return m_expiration; } /** * <p>If the object expiration is configured (see PUT Bucket lifecycle), the * response includes this header. It includes the <code>expiry-date</code> and * <code>rule-id</code> key-value pairs providing object expiration information. * The value of the <code>rule-id</code> is URL-encoded.</p> */ inline void SetExpiration(const Aws::String& value) { m_expiration = value; } /** * <p>If the object expiration is configured (see PUT Bucket lifecycle), the * response includes this header. It includes the <code>expiry-date</code> and * <code>rule-id</code> key-value pairs providing object expiration information. * The value of the <code>rule-id</code> is URL-encoded.</p> */ inline void SetExpiration(Aws::String&& value) { m_expiration = std::move(value); } /** * <p>If the object expiration is configured (see PUT Bucket lifecycle), the * response includes this header. It includes the <code>expiry-date</code> and * <code>rule-id</code> key-value pairs providing object expiration information. * The value of the <code>rule-id</code> is URL-encoded.</p> */ inline void SetExpiration(const char* value) { m_expiration.assign(value); } /** * <p>If the object expiration is configured (see PUT Bucket lifecycle), the * response includes this header. It includes the <code>expiry-date</code> and * <code>rule-id</code> key-value pairs providing object expiration information. * The value of the <code>rule-id</code> is URL-encoded.</p> */ inline HeadObjectResult& WithExpiration(const Aws::String& value) { SetExpiration(value); return *this;} /** * <p>If the object expiration is configured (see PUT Bucket lifecycle), the * response includes this header. It includes the <code>expiry-date</code> and * <code>rule-id</code> key-value pairs providing object expiration information. * The value of the <code>rule-id</code> is URL-encoded.</p> */ inline HeadObjectResult& WithExpiration(Aws::String&& value) { SetExpiration(std::move(value)); return *this;} /** * <p>If the object expiration is configured (see PUT Bucket lifecycle), the * response includes this header. It includes the <code>expiry-date</code> and * <code>rule-id</code> key-value pairs providing object expiration information. * The value of the <code>rule-id</code> is URL-encoded.</p> */ inline HeadObjectResult& WithExpiration(const char* value) { SetExpiration(value); return *this;} /** * <p>If the object is an archived object (an object whose storage class is * GLACIER), the response includes this header if either the archive restoration is * in progress (see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html">RestoreObject</a> * or an archive copy is already restored.</p> <p> If an archive copy is already * restored, the header value indicates when Amazon S3 is scheduled to delete the * object copy. For example:</p> <p> <code>x-amz-restore: ongoing-request="false", * expiry-date="Fri, 21 Dec 2012 00:00:00 GMT"</code> </p> <p>If the object * restoration is in progress, the header returns the value * <code>ongoing-request="true"</code>.</p> <p>For more information about archiving * objects, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html#lifecycle-transition-general-considerations">Transitioning * Objects: General Considerations</a>.</p> */ inline const Aws::String& GetRestore() const{ return m_restore; } /** * <p>If the object is an archived object (an object whose storage class is * GLACIER), the response includes this header if either the archive restoration is * in progress (see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html">RestoreObject</a> * or an archive copy is already restored.</p> <p> If an archive copy is already * restored, the header value indicates when Amazon S3 is scheduled to delete the * object copy. For example:</p> <p> <code>x-amz-restore: ongoing-request="false", * expiry-date="Fri, 21 Dec 2012 00:00:00 GMT"</code> </p> <p>If the object * restoration is in progress, the header returns the value * <code>ongoing-request="true"</code>.</p> <p>For more information about archiving * objects, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html#lifecycle-transition-general-considerations">Transitioning * Objects: General Considerations</a>.</p> */ inline void SetRestore(const Aws::String& value) { m_restore = value; } /** * <p>If the object is an archived object (an object whose storage class is * GLACIER), the response includes this header if either the archive restoration is * in progress (see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html">RestoreObject</a> * or an archive copy is already restored.</p> <p> If an archive copy is already * restored, the header value indicates when Amazon S3 is scheduled to delete the * object copy. For example:</p> <p> <code>x-amz-restore: ongoing-request="false", * expiry-date="Fri, 21 Dec 2012 00:00:00 GMT"</code> </p> <p>If the object * restoration is in progress, the header returns the value * <code>ongoing-request="true"</code>.</p> <p>For more information about archiving * objects, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html#lifecycle-transition-general-considerations">Transitioning * Objects: General Considerations</a>.</p> */ inline void SetRestore(Aws::String&& value) { m_restore = std::move(value); } /** * <p>If the object is an archived object (an object whose storage class is * GLACIER), the response includes this header if either the archive restoration is * in progress (see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html">RestoreObject</a> * or an archive copy is already restored.</p> <p> If an archive copy is already * restored, the header value indicates when Amazon S3 is scheduled to delete the * object copy. For example:</p> <p> <code>x-amz-restore: ongoing-request="false", * expiry-date="Fri, 21 Dec 2012 00:00:00 GMT"</code> </p> <p>If the object * restoration is in progress, the header returns the value * <code>ongoing-request="true"</code>.</p> <p>For more information about archiving * objects, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html#lifecycle-transition-general-considerations">Transitioning * Objects: General Considerations</a>.</p> */ inline void SetRestore(const char* value) { m_restore.assign(value); } /** * <p>If the object is an archived object (an object whose storage class is * GLACIER), the response includes this header if either the archive restoration is * in progress (see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html">RestoreObject</a> * or an archive copy is already restored.</p> <p> If an archive copy is already * restored, the header value indicates when Amazon S3 is scheduled to delete the * object copy. For example:</p> <p> <code>x-amz-restore: ongoing-request="false", * expiry-date="Fri, 21 Dec 2012 00:00:00 GMT"</code> </p> <p>If the object * restoration is in progress, the header returns the value * <code>ongoing-request="true"</code>.</p> <p>For more information about archiving * objects, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html#lifecycle-transition-general-considerations">Transitioning * Objects: General Considerations</a>.</p> */ inline HeadObjectResult& WithRestore(const Aws::String& value) { SetRestore(value); return *this;} /** * <p>If the object is an archived object (an object whose storage class is * GLACIER), the response includes this header if either the archive restoration is * in progress (see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html">RestoreObject</a> * or an archive copy is already restored.</p> <p> If an archive copy is already * restored, the header value indicates when Amazon S3 is scheduled to delete the * object copy. For example:</p> <p> <code>x-amz-restore: ongoing-request="false", * expiry-date="Fri, 21 Dec 2012 00:00:00 GMT"</code> </p> <p>If the object * restoration is in progress, the header returns the value * <code>ongoing-request="true"</code>.</p> <p>For more information about archiving * objects, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html#lifecycle-transition-general-considerations">Transitioning * Objects: General Considerations</a>.</p> */ inline HeadObjectResult& WithRestore(Aws::String&& value) { SetRestore(std::move(value)); return *this;} /** * <p>If the object is an archived object (an object whose storage class is * GLACIER), the response includes this header if either the archive restoration is * in progress (see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_RestoreObject.html">RestoreObject</a> * or an archive copy is already restored.</p> <p> If an archive copy is already * restored, the header value indicates when Amazon S3 is scheduled to delete the * object copy. For example:</p> <p> <code>x-amz-restore: ongoing-request="false", * expiry-date="Fri, 21 Dec 2012 00:00:00 GMT"</code> </p> <p>If the object * restoration is in progress, the header returns the value * <code>ongoing-request="true"</code>.</p> <p>For more information about archiving * objects, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html#lifecycle-transition-general-considerations">Transitioning * Objects: General Considerations</a>.</p> */ inline HeadObjectResult& WithRestore(const char* value) { SetRestore(value); return *this;} /** * <p>The archive state of the head object.</p> */ inline const ArchiveStatus& GetArchiveStatus() const{ return m_archiveStatus; } /** * <p>The archive state of the head object.</p> */ inline void SetArchiveStatus(const ArchiveStatus& value) { m_archiveStatus = value; } /** * <p>The archive state of the head object.</p> */ inline void SetArchiveStatus(ArchiveStatus&& value) { m_archiveStatus = std::move(value); } /** * <p>The archive state of the head object.</p> */ inline HeadObjectResult& WithArchiveStatus(const ArchiveStatus& value) { SetArchiveStatus(value); return *this;} /** * <p>The archive state of the head object.</p> */ inline HeadObjectResult& WithArchiveStatus(ArchiveStatus&& value) { SetArchiveStatus(std::move(value)); return *this;} /** * <p>Creation date of the object.</p> */ inline const Aws::Utils::DateTime& GetLastModified() const{ return m_lastModified; } /** * <p>Creation date of the object.</p> */ inline void SetLastModified(const Aws::Utils::DateTime& value) { m_lastModified = value; } /** * <p>Creation date of the object.</p> */ inline void SetLastModified(Aws::Utils::DateTime&& value) { m_lastModified = std::move(value); } /** * <p>Creation date of the object.</p> */ inline HeadObjectResult& WithLastModified(const Aws::Utils::DateTime& value) { SetLastModified(value); return *this;} /** * <p>Creation date of the object.</p> */ inline HeadObjectResult& WithLastModified(Aws::Utils::DateTime&& value) { SetLastModified(std::move(value)); return *this;} /** * <p>Size of the body in bytes.</p> */ inline long long GetContentLength() const{ return m_contentLength; } /** * <p>Size of the body in bytes.</p> */ inline void SetContentLength(long long value) { m_contentLength = value; } /** * <p>Size of the body in bytes.</p> */ inline HeadObjectResult& WithContentLength(long long value) { SetContentLength(value); return *this;} /** * <p>The base64-encoded, 32-bit CRC32 checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline const Aws::String& GetChecksumCRC32() const{ return m_checksumCRC32; } /** * <p>The base64-encoded, 32-bit CRC32 checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumCRC32(const Aws::String& value) { m_checksumCRC32 = value; } /** * <p>The base64-encoded, 32-bit CRC32 checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumCRC32(Aws::String&& value) { m_checksumCRC32 = std::move(value); } /** * <p>The base64-encoded, 32-bit CRC32 checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumCRC32(const char* value) { m_checksumCRC32.assign(value); } /** * <p>The base64-encoded, 32-bit CRC32 checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumCRC32(const Aws::String& value) { SetChecksumCRC32(value); return *this;} /** * <p>The base64-encoded, 32-bit CRC32 checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumCRC32(Aws::String&& value) { SetChecksumCRC32(std::move(value)); return *this;} /** * <p>The base64-encoded, 32-bit CRC32 checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumCRC32(const char* value) { SetChecksumCRC32(value); return *this;} /** * <p>The base64-encoded, 32-bit CRC32C checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline const Aws::String& GetChecksumCRC32C() const{ return m_checksumCRC32C; } /** * <p>The base64-encoded, 32-bit CRC32C checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumCRC32C(const Aws::String& value) { m_checksumCRC32C = value; } /** * <p>The base64-encoded, 32-bit CRC32C checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumCRC32C(Aws::String&& value) { m_checksumCRC32C = std::move(value); } /** * <p>The base64-encoded, 32-bit CRC32C checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumCRC32C(const char* value) { m_checksumCRC32C.assign(value); } /** * <p>The base64-encoded, 32-bit CRC32C checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumCRC32C(const Aws::String& value) { SetChecksumCRC32C(value); return *this;} /** * <p>The base64-encoded, 32-bit CRC32C checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumCRC32C(Aws::String&& value) { SetChecksumCRC32C(std::move(value)); return *this;} /** * <p>The base64-encoded, 32-bit CRC32C checksum of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumCRC32C(const char* value) { SetChecksumCRC32C(value); return *this;} /** * <p>The base64-encoded, 160-bit SHA-1 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline const Aws::String& GetChecksumSHA1() const{ return m_checksumSHA1; } /** * <p>The base64-encoded, 160-bit SHA-1 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumSHA1(const Aws::String& value) { m_checksumSHA1 = value; } /** * <p>The base64-encoded, 160-bit SHA-1 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumSHA1(Aws::String&& value) { m_checksumSHA1 = std::move(value); } /** * <p>The base64-encoded, 160-bit SHA-1 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumSHA1(const char* value) { m_checksumSHA1.assign(value); } /** * <p>The base64-encoded, 160-bit SHA-1 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumSHA1(const Aws::String& value) { SetChecksumSHA1(value); return *this;} /** * <p>The base64-encoded, 160-bit SHA-1 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumSHA1(Aws::String&& value) { SetChecksumSHA1(std::move(value)); return *this;} /** * <p>The base64-encoded, 160-bit SHA-1 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumSHA1(const char* value) { SetChecksumSHA1(value); return *this;} /** * <p>The base64-encoded, 256-bit SHA-256 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline const Aws::String& GetChecksumSHA256() const{ return m_checksumSHA256; } /** * <p>The base64-encoded, 256-bit SHA-256 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumSHA256(const Aws::String& value) { m_checksumSHA256 = value; } /** * <p>The base64-encoded, 256-bit SHA-256 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumSHA256(Aws::String&& value) { m_checksumSHA256 = std::move(value); } /** * <p>The base64-encoded, 256-bit SHA-256 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline void SetChecksumSHA256(const char* value) { m_checksumSHA256.assign(value); } /** * <p>The base64-encoded, 256-bit SHA-256 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumSHA256(const Aws::String& value) { SetChecksumSHA256(value); return *this;} /** * <p>The base64-encoded, 256-bit SHA-256 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumSHA256(Aws::String&& value) { SetChecksumSHA256(std::move(value)); return *this;} /** * <p>The base64-encoded, 256-bit SHA-256 digest of the object. This will only be * present if it was uploaded with the object. With multipart uploads, this may not * be a checksum value of the object. For more information about how checksums are * calculated with multipart uploads, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html#large-object-checksums"> * Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p> */ inline HeadObjectResult& WithChecksumSHA256(const char* value) { SetChecksumSHA256(value); return *this;} /** * <p>An entity tag (ETag) is an opaque identifier assigned by a web server to a * specific version of a resource found at a URL.</p> */ inline const Aws::String& GetETag() const{ return m_eTag; } /** * <p>An entity tag (ETag) is an opaque identifier assigned by a web server to a * specific version of a resource found at a URL.</p> */ inline void SetETag(const Aws::String& value) { m_eTag = value; } /** * <p>An entity tag (ETag) is an opaque identifier assigned by a web server to a * specific version of a resource found at a URL.</p> */ inline void SetETag(Aws::String&& value) { m_eTag = std::move(value); } /** * <p>An entity tag (ETag) is an opaque identifier assigned by a web server to a * specific version of a resource found at a URL.</p> */ inline void SetETag(const char* value) { m_eTag.assign(value); } /** * <p>An entity tag (ETag) is an opaque identifier assigned by a web server to a * specific version of a resource found at a URL.</p> */ inline HeadObjectResult& WithETag(const Aws::String& value) { SetETag(value); return *this;} /** * <p>An entity tag (ETag) is an opaque identifier assigned by a web server to a * specific version of a resource found at a URL.</p> */ inline HeadObjectResult& WithETag(Aws::String&& value) { SetETag(std::move(value)); return *this;} /** * <p>An entity tag (ETag) is an opaque identifier assigned by a web server to a * specific version of a resource found at a URL.</p> */ inline HeadObjectResult& WithETag(const char* value) { SetETag(value); return *this;} /** * <p>This is set to the number of metadata entries not returned in * <code>x-amz-meta</code> headers. This can happen if you create metadata using an * API like SOAP that supports more flexible metadata than the REST API. For * example, using SOAP, you can create metadata whose values are not legal HTTP * headers.</p> */ inline int GetMissingMeta() const{ return m_missingMeta; } /** * <p>This is set to the number of metadata entries not returned in * <code>x-amz-meta</code> headers. This can happen if you create metadata using an * API like SOAP that supports more flexible metadata than the REST API. For * example, using SOAP, you can create metadata whose values are not legal HTTP * headers.</p> */ inline void SetMissingMeta(int value) { m_missingMeta = value; } /** * <p>This is set to the number of metadata entries not returned in * <code>x-amz-meta</code> headers. This can happen if you create metadata using an * API like SOAP that supports more flexible metadata than the REST API. For * example, using SOAP, you can create metadata whose values are not legal HTTP * headers.</p> */ inline HeadObjectResult& WithMissingMeta(int value) { SetMissingMeta(value); return *this;} /** * <p>Version of the object.</p> */ inline const Aws::String& GetVersionId() const{ return m_versionId; } /** * <p>Version of the object.</p> */ inline void SetVersionId(const Aws::String& value) { m_versionId = value; } /** * <p>Version of the object.</p> */ inline void SetVersionId(Aws::String&& value) { m_versionId = std::move(value); } /** * <p>Version of the object.</p> */ inline void SetVersionId(const char* value) { m_versionId.assign(value); } /** * <p>Version of the object.</p> */ inline HeadObjectResult& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;} /** * <p>Version of the object.</p> */ inline HeadObjectResult& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;} /** * <p>Version of the object.</p> */ inline HeadObjectResult& WithVersionId(const char* value) { SetVersionId(value); return *this;} /** * <p>Specifies caching behavior along the request/reply chain.</p> */ inline const Aws::String& GetCacheControl() const{ return m_cacheControl; } /** * <p>Specifies caching behavior along the request/reply chain.</p> */ inline void SetCacheControl(const Aws::String& value) { m_cacheControl = value; } /** * <p>Specifies caching behavior along the request/reply chain.</p> */ inline void SetCacheControl(Aws::String&& value) { m_cacheControl = std::move(value); } /** * <p>Specifies caching behavior along the request/reply chain.</p> */ inline void SetCacheControl(const char* value) { m_cacheControl.assign(value); } /** * <p>Specifies caching behavior along the request/reply chain.</p> */ inline HeadObjectResult& WithCacheControl(const Aws::String& value) { SetCacheControl(value); return *this;} /** * <p>Specifies caching behavior along the request/reply chain.</p> */ inline HeadObjectResult& WithCacheControl(Aws::String&& value) { SetCacheControl(std::move(value)); return *this;} /** * <p>Specifies caching behavior along the request/reply chain.</p> */ inline HeadObjectResult& WithCacheControl(const char* value) { SetCacheControl(value); return *this;} /** * <p>Specifies presentational information for the object.</p> */ inline const Aws::String& GetContentDisposition() const{ return m_contentDisposition; } /** * <p>Specifies presentational information for the object.</p> */ inline void SetContentDisposition(const Aws::String& value) { m_contentDisposition = value; } /** * <p>Specifies presentational information for the object.</p> */ inline void SetContentDisposition(Aws::String&& value) { m_contentDisposition = std::move(value); } /** * <p>Specifies presentational information for the object.</p> */ inline void SetContentDisposition(const char* value) { m_contentDisposition.assign(value); } /** * <p>Specifies presentational information for the object.</p> */ inline HeadObjectResult& WithContentDisposition(const Aws::String& value) { SetContentDisposition(value); return *this;} /** * <p>Specifies presentational information for the object.</p> */ inline HeadObjectResult& WithContentDisposition(Aws::String&& value) { SetContentDisposition(std::move(value)); return *this;} /** * <p>Specifies presentational information for the object.</p> */ inline HeadObjectResult& WithContentDisposition(const char* value) { SetContentDisposition(value); return *this;} /** * <p>Specifies what content encodings have been applied to the object and thus * what decoding mechanisms must be applied to obtain the media-type referenced by * the Content-Type header field.</p> */ inline const Aws::String& GetContentEncoding() const{ return m_contentEncoding; } /** * <p>Specifies what content encodings have been applied to the object and thus * what decoding mechanisms must be applied to obtain the media-type referenced by * the Content-Type header field.</p> */ inline void SetContentEncoding(const Aws::String& value) { m_contentEncoding = value; } /** * <p>Specifies what content encodings have been applied to the object and thus * what decoding mechanisms must be applied to obtain the media-type referenced by * the Content-Type header field.</p> */ inline void SetContentEncoding(Aws::String&& value) { m_contentEncoding = std::move(value); } /** * <p>Specifies what content encodings have been applied to the object and thus * what decoding mechanisms must be applied to obtain the media-type referenced by * the Content-Type header field.</p> */ inline void SetContentEncoding(const char* value) { m_contentEncoding.assign(value); } /** * <p>Specifies what content encodings have been applied to the object and thus * what decoding mechanisms must be applied to obtain the media-type referenced by * the Content-Type header field.</p> */ inline HeadObjectResult& WithContentEncoding(const Aws::String& value) { SetContentEncoding(value); return *this;} /** * <p>Specifies what content encodings have been applied to the object and thus * what decoding mechanisms must be applied to obtain the media-type referenced by * the Content-Type header field.</p> */ inline HeadObjectResult& WithContentEncoding(Aws::String&& value) { SetContentEncoding(std::move(value)); return *this;} /** * <p>Specifies what content encodings have been applied to the object and thus * what decoding mechanisms must be applied to obtain the media-type referenced by * the Content-Type header field.</p> */ inline HeadObjectResult& WithContentEncoding(const char* value) { SetContentEncoding(value); return *this;} /** * <p>The language the content is in.</p> */ inline const Aws::String& GetContentLanguage() const{ return m_contentLanguage; } /** * <p>The language the content is in.</p> */ inline void SetContentLanguage(const Aws::String& value) { m_contentLanguage = value; } /** * <p>The language the content is in.</p> */ inline void SetContentLanguage(Aws::String&& value) { m_contentLanguage = std::move(value); } /** * <p>The language the content is in.</p> */ inline void SetContentLanguage(const char* value) { m_contentLanguage.assign(value); } /** * <p>The language the content is in.</p> */ inline HeadObjectResult& WithContentLanguage(const Aws::String& value) { SetContentLanguage(value); return *this;} /** * <p>The language the content is in.</p> */ inline HeadObjectResult& WithContentLanguage(Aws::String&& value) { SetContentLanguage(std::move(value)); return *this;} /** * <p>The language the content is in.</p> */ inline HeadObjectResult& WithContentLanguage(const char* value) { SetContentLanguage(value); return *this;} /** * <p>A standard MIME type describing the format of the object data.</p> */ inline const Aws::String& GetContentType() const{ return m_contentType; } /** * <p>A standard MIME type describing the format of the object data.</p> */ inline void SetContentType(const Aws::String& value) { m_contentType = value; } /** * <p>A standard MIME type describing the format of the object data.</p> */ inline void SetContentType(Aws::String&& value) { m_contentType = std::move(value); } /** * <p>A standard MIME type describing the format of the object data.</p> */ inline void SetContentType(const char* value) { m_contentType.assign(value); } /** * <p>A standard MIME type describing the format of the object data.</p> */ inline HeadObjectResult& WithContentType(const Aws::String& value) { SetContentType(value); return *this;} /** * <p>A standard MIME type describing the format of the object data.</p> */ inline HeadObjectResult& WithContentType(Aws::String&& value) { SetContentType(std::move(value)); return *this;} /** * <p>A standard MIME type describing the format of the object data.</p> */ inline HeadObjectResult& WithContentType(const char* value) { SetContentType(value); return *this;} /** * <p>The date and time at which the object is no longer cacheable.</p> */ inline const Aws::Utils::DateTime& GetExpires() const{ return m_expires; } /** * <p>The date and time at which the object is no longer cacheable.</p> */ inline void SetExpires(const Aws::Utils::DateTime& value) { m_expires = value; } /** * <p>The date and time at which the object is no longer cacheable.</p> */ inline void SetExpires(Aws::Utils::DateTime&& value) { m_expires = std::move(value); } /** * <p>The date and time at which the object is no longer cacheable.</p> */ inline HeadObjectResult& WithExpires(const Aws::Utils::DateTime& value) { SetExpires(value); return *this;} /** * <p>The date and time at which the object is no longer cacheable.</p> */ inline HeadObjectResult& WithExpires(Aws::Utils::DateTime&& value) { SetExpires(std::move(value)); return *this;} /** * <p>If the bucket is configured as a website, redirects requests for this object * to another object in the same bucket or to an external URL. Amazon S3 stores the * value of this header in the object metadata.</p> */ inline const Aws::String& GetWebsiteRedirectLocation() const{ return m_websiteRedirectLocation; } /** * <p>If the bucket is configured as a website, redirects requests for this object * to another object in the same bucket or to an external URL. Amazon S3 stores the * value of this header in the object metadata.</p> */ inline void SetWebsiteRedirectLocation(const Aws::String& value) { m_websiteRedirectLocation = value; } /** * <p>If the bucket is configured as a website, redirects requests for this object * to another object in the same bucket or to an external URL. Amazon S3 stores the * value of this header in the object metadata.</p> */ inline void SetWebsiteRedirectLocation(Aws::String&& value) { m_websiteRedirectLocation = std::move(value); } /** * <p>If the bucket is configured as a website, redirects requests for this object * to another object in the same bucket or to an external URL. Amazon S3 stores the * value of this header in the object metadata.</p> */ inline void SetWebsiteRedirectLocation(const char* value) { m_websiteRedirectLocation.assign(value); } /** * <p>If the bucket is configured as a website, redirects requests for this object * to another object in the same bucket or to an external URL. Amazon S3 stores the * value of this header in the object metadata.</p> */ inline HeadObjectResult& WithWebsiteRedirectLocation(const Aws::String& value) { SetWebsiteRedirectLocation(value); return *this;} /** * <p>If the bucket is configured as a website, redirects requests for this object * to another object in the same bucket or to an external URL. Amazon S3 stores the * value of this header in the object metadata.</p> */ inline HeadObjectResult& WithWebsiteRedirectLocation(Aws::String&& value) { SetWebsiteRedirectLocation(std::move(value)); return *this;} /** * <p>If the bucket is configured as a website, redirects requests for this object * to another object in the same bucket or to an external URL. Amazon S3 stores the * value of this header in the object metadata.</p> */ inline HeadObjectResult& WithWebsiteRedirectLocation(const char* value) { SetWebsiteRedirectLocation(value); return *this;} /** * <p>If the object is stored using server-side encryption either with an Amazon * Web Services KMS key or an Amazon S3-managed encryption key, the response * includes this header with the value of the server-side encryption algorithm used * when storing this object in Amazon S3 (for example, AES256, aws:kms).</p> */ inline const ServerSideEncryption& GetServerSideEncryption() const{ return m_serverSideEncryption; } /** * <p>If the object is stored using server-side encryption either with an Amazon * Web Services KMS key or an Amazon S3-managed encryption key, the response * includes this header with the value of the server-side encryption algorithm used * when storing this object in Amazon S3 (for example, AES256, aws:kms).</p> */ inline void SetServerSideEncryption(const ServerSideEncryption& value) { m_serverSideEncryption = value; } /** * <p>If the object is stored using server-side encryption either with an Amazon * Web Services KMS key or an Amazon S3-managed encryption key, the response * includes this header with the value of the server-side encryption algorithm used * when storing this object in Amazon S3 (for example, AES256, aws:kms).</p> */ inline void SetServerSideEncryption(ServerSideEncryption&& value) { m_serverSideEncryption = std::move(value); } /** * <p>If the object is stored using server-side encryption either with an Amazon * Web Services KMS key or an Amazon S3-managed encryption key, the response * includes this header with the value of the server-side encryption algorithm used * when storing this object in Amazon S3 (for example, AES256, aws:kms).</p> */ inline HeadObjectResult& WithServerSideEncryption(const ServerSideEncryption& value) { SetServerSideEncryption(value); return *this;} /** * <p>If the object is stored using server-side encryption either with an Amazon * Web Services KMS key or an Amazon S3-managed encryption key, the response * includes this header with the value of the server-side encryption algorithm used * when storing this object in Amazon S3 (for example, AES256, aws:kms).</p> */ inline HeadObjectResult& WithServerSideEncryption(ServerSideEncryption&& value) { SetServerSideEncryption(std::move(value)); return *this;} /** * <p>A map of metadata to store with the object in S3.</p> */ inline const Aws::Map<Aws::String, Aws::String>& GetMetadata() const{ return m_metadata; } /** * <p>A map of metadata to store with the object in S3.</p> */ inline void SetMetadata(const Aws::Map<Aws::String, Aws::String>& value) { m_metadata = value; } /** * <p>A map of metadata to store with the object in S3.</p> */ inline void SetMetadata(Aws::Map<Aws::String, Aws::String>&& value) { m_metadata = std::move(value); } /** * <p>A map of metadata to store with the object in S3.</p> */ inline HeadObjectResult& WithMetadata(const Aws::Map<Aws::String, Aws::String>& value) { SetMetadata(value); return *this;} /** * <p>A map of metadata to store with the object in S3.</p> */ inline HeadObjectResult& WithMetadata(Aws::Map<Aws::String, Aws::String>&& value) { SetMetadata(std::move(value)); return *this;} /** * <p>A map of metadata to store with the object in S3.</p> */ inline HeadObjectResult& AddMetadata(const Aws::String& key, const Aws::String& value) { m_metadata.emplace(key, value); return *this; } /** * <p>A map of metadata to store with the object in S3.</p> */ inline HeadObjectResult& AddMetadata(Aws::String&& key, const Aws::String& value) { m_metadata.emplace(std::move(key), value); return *this; } /** * <p>A map of metadata to store with the object in S3.</p> */ inline HeadObjectResult& AddMetadata(const Aws::String& key, Aws::String&& value) { m_metadata.emplace(key, std::move(value)); return *this; } /** * <p>A map of metadata to store with the object in S3.</p> */ inline HeadObjectResult& AddMetadata(Aws::String&& key, Aws::String&& value) { m_metadata.emplace(std::move(key), std::move(value)); return *this; } /** * <p>A map of metadata to store with the object in S3.</p> */ inline HeadObjectResult& AddMetadata(const char* key, Aws::String&& value) { m_metadata.emplace(key, std::move(value)); return *this; } /** * <p>A map of metadata to store with the object in S3.</p> */ inline HeadObjectResult& AddMetadata(Aws::String&& key, const char* value) { m_metadata.emplace(std::move(key), value); return *this; } /** * <p>A map of metadata to store with the object in S3.</p> */ inline HeadObjectResult& AddMetadata(const char* key, const char* value) { m_metadata.emplace(key, value); return *this; } /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header confirming the encryption * algorithm used.</p> */ inline const Aws::String& GetSSECustomerAlgorithm() const{ return m_sSECustomerAlgorithm; } /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header confirming the encryption * algorithm used.</p> */ inline void SetSSECustomerAlgorithm(const Aws::String& value) { m_sSECustomerAlgorithm = value; } /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header confirming the encryption * algorithm used.</p> */ inline void SetSSECustomerAlgorithm(Aws::String&& value) { m_sSECustomerAlgorithm = std::move(value); } /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header confirming the encryption * algorithm used.</p> */ inline void SetSSECustomerAlgorithm(const char* value) { m_sSECustomerAlgorithm.assign(value); } /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header confirming the encryption * algorithm used.</p> */ inline HeadObjectResult& WithSSECustomerAlgorithm(const Aws::String& value) { SetSSECustomerAlgorithm(value); return *this;} /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header confirming the encryption * algorithm used.</p> */ inline HeadObjectResult& WithSSECustomerAlgorithm(Aws::String&& value) { SetSSECustomerAlgorithm(std::move(value)); return *this;} /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header confirming the encryption * algorithm used.</p> */ inline HeadObjectResult& WithSSECustomerAlgorithm(const char* value) { SetSSECustomerAlgorithm(value); return *this;} /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header to provide round-trip message * integrity verification of the customer-provided encryption key.</p> */ inline const Aws::String& GetSSECustomerKeyMD5() const{ return m_sSECustomerKeyMD5; } /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header to provide round-trip message * integrity verification of the customer-provided encryption key.</p> */ inline void SetSSECustomerKeyMD5(const Aws::String& value) { m_sSECustomerKeyMD5 = value; } /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header to provide round-trip message * integrity verification of the customer-provided encryption key.</p> */ inline void SetSSECustomerKeyMD5(Aws::String&& value) { m_sSECustomerKeyMD5 = std::move(value); } /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header to provide round-trip message * integrity verification of the customer-provided encryption key.</p> */ inline void SetSSECustomerKeyMD5(const char* value) { m_sSECustomerKeyMD5.assign(value); } /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header to provide round-trip message * integrity verification of the customer-provided encryption key.</p> */ inline HeadObjectResult& WithSSECustomerKeyMD5(const Aws::String& value) { SetSSECustomerKeyMD5(value); return *this;} /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header to provide round-trip message * integrity verification of the customer-provided encryption key.</p> */ inline HeadObjectResult& WithSSECustomerKeyMD5(Aws::String&& value) { SetSSECustomerKeyMD5(std::move(value)); return *this;} /** * <p>If server-side encryption with a customer-provided encryption key was * requested, the response will include this header to provide round-trip message * integrity verification of the customer-provided encryption key.</p> */ inline HeadObjectResult& WithSSECustomerKeyMD5(const char* value) { SetSSECustomerKeyMD5(value); return *this;} /** * <p>If present, specifies the ID of the Amazon Web Services Key Management * Service (Amazon Web Services KMS) symmetric customer managed key that was used * for the object.</p> */ inline const Aws::String& GetSSEKMSKeyId() const{ return m_sSEKMSKeyId; } /** * <p>If present, specifies the ID of the Amazon Web Services Key Management * Service (Amazon Web Services KMS) symmetric customer managed key that was used * for the object.</p> */ inline void SetSSEKMSKeyId(const Aws::String& value) { m_sSEKMSKeyId = value; } /** * <p>If present, specifies the ID of the Amazon Web Services Key Management * Service (Amazon Web Services KMS) symmetric customer managed key that was used * for the object.</p> */ inline void SetSSEKMSKeyId(Aws::String&& value) { m_sSEKMSKeyId = std::move(value); } /** * <p>If present, specifies the ID of the Amazon Web Services Key Management * Service (Amazon Web Services KMS) symmetric customer managed key that was used * for the object.</p> */ inline void SetSSEKMSKeyId(const char* value) { m_sSEKMSKeyId.assign(value); } /** * <p>If present, specifies the ID of the Amazon Web Services Key Management * Service (Amazon Web Services KMS) symmetric customer managed key that was used * for the object.</p> */ inline HeadObjectResult& WithSSEKMSKeyId(const Aws::String& value) { SetSSEKMSKeyId(value); return *this;} /** * <p>If present, specifies the ID of the Amazon Web Services Key Management * Service (Amazon Web Services KMS) symmetric customer managed key that was used * for the object.</p> */ inline HeadObjectResult& WithSSEKMSKeyId(Aws::String&& value) { SetSSEKMSKeyId(std::move(value)); return *this;} /** * <p>If present, specifies the ID of the Amazon Web Services Key Management * Service (Amazon Web Services KMS) symmetric customer managed key that was used * for the object.</p> */ inline HeadObjectResult& WithSSEKMSKeyId(const char* value) { SetSSEKMSKeyId(value); return *this;} /** * <p>Indicates whether the object uses an S3 Bucket Key for server-side encryption * with Amazon Web Services KMS (SSE-KMS).</p> */ inline bool GetBucketKeyEnabled() const{ return m_bucketKeyEnabled; } /** * <p>Indicates whether the object uses an S3 Bucket Key for server-side encryption * with Amazon Web Services KMS (SSE-KMS).</p> */ inline void SetBucketKeyEnabled(bool value) { m_bucketKeyEnabled = value; } /** * <p>Indicates whether the object uses an S3 Bucket Key for server-side encryption * with Amazon Web Services KMS (SSE-KMS).</p> */ inline HeadObjectResult& WithBucketKeyEnabled(bool value) { SetBucketKeyEnabled(value); return *this;} /** * <p>Provides storage class information of the object. Amazon S3 returns this * header for all objects except for S3 Standard storage class objects.</p> <p>For * more information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html">Storage * Classes</a>.</p> */ inline const StorageClass& GetStorageClass() const{ return m_storageClass; } /** * <p>Provides storage class information of the object. Amazon S3 returns this * header for all objects except for S3 Standard storage class objects.</p> <p>For * more information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html">Storage * Classes</a>.</p> */ inline void SetStorageClass(const StorageClass& value) { m_storageClass = value; } /** * <p>Provides storage class information of the object. Amazon S3 returns this * header for all objects except for S3 Standard storage class objects.</p> <p>For * more information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html">Storage * Classes</a>.</p> */ inline void SetStorageClass(StorageClass&& value) { m_storageClass = std::move(value); } /** * <p>Provides storage class information of the object. Amazon S3 returns this * header for all objects except for S3 Standard storage class objects.</p> <p>For * more information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html">Storage * Classes</a>.</p> */ inline HeadObjectResult& WithStorageClass(const StorageClass& value) { SetStorageClass(value); return *this;} /** * <p>Provides storage class information of the object. Amazon S3 returns this * header for all objects except for S3 Standard storage class objects.</p> <p>For * more information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html">Storage * Classes</a>.</p> */ inline HeadObjectResult& WithStorageClass(StorageClass&& value) { SetStorageClass(std::move(value)); return *this;} inline const RequestCharged& GetRequestCharged() const{ return m_requestCharged; } inline void SetRequestCharged(const RequestCharged& value) { m_requestCharged = value; } inline void SetRequestCharged(RequestCharged&& value) { m_requestCharged = std::move(value); } inline HeadObjectResult& WithRequestCharged(const RequestCharged& value) { SetRequestCharged(value); return *this;} inline HeadObjectResult& WithRequestCharged(RequestCharged&& value) { SetRequestCharged(std::move(value)); return *this;} /** * <p>Amazon S3 can return this header if your request involves a bucket that is * either a source or a destination in a replication rule.</p> <p>In replication, * you have a source bucket on which you configure replication and destination * bucket or buckets where Amazon S3 stores object replicas. When you request an * object (<code>GetObject</code>) or object metadata (<code>HeadObject</code>) * from these buckets, Amazon S3 will return the * <code>x-amz-replication-status</code> header in the response as follows:</p> * <ul> <li> <p> <b>If requesting an object from the source bucket</b>, Amazon S3 * will return the <code>x-amz-replication-status</code> header if the object in * your request is eligible for replication.</p> <p> For example, suppose that in * your replication configuration, you specify object prefix <code>TaxDocs</code> * requesting Amazon S3 to replicate objects with key prefix <code>TaxDocs</code>. * Any objects you upload with this key name prefix, for example * <code>TaxDocs/document1.pdf</code>, are eligible for replication. For any object * request with this key name prefix, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value PENDING, COMPLETED or * FAILED indicating object replication status.</p> </li> <li> <p> <b>If requesting * an object from a destination bucket</b>, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value REPLICA if the object in * your request is a replica that Amazon S3 created and there is no replica * modification replication in progress.</p> </li> <li> <p> <b>When replicating * objects to multiple destination buckets</b>, the * <code>x-amz-replication-status</code> header acts differently. The header of the * source object will only return a value of COMPLETED when replication is * successful to all destinations. The header will remain at value PENDING until * replication has completed for all destinations. If one or more destinations * fails replication the header will return FAILED. </p> </li> </ul> <p>For more * information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html">Replication</a>.</p> */ inline const ReplicationStatus& GetReplicationStatus() const{ return m_replicationStatus; } /** * <p>Amazon S3 can return this header if your request involves a bucket that is * either a source or a destination in a replication rule.</p> <p>In replication, * you have a source bucket on which you configure replication and destination * bucket or buckets where Amazon S3 stores object replicas. When you request an * object (<code>GetObject</code>) or object metadata (<code>HeadObject</code>) * from these buckets, Amazon S3 will return the * <code>x-amz-replication-status</code> header in the response as follows:</p> * <ul> <li> <p> <b>If requesting an object from the source bucket</b>, Amazon S3 * will return the <code>x-amz-replication-status</code> header if the object in * your request is eligible for replication.</p> <p> For example, suppose that in * your replication configuration, you specify object prefix <code>TaxDocs</code> * requesting Amazon S3 to replicate objects with key prefix <code>TaxDocs</code>. * Any objects you upload with this key name prefix, for example * <code>TaxDocs/document1.pdf</code>, are eligible for replication. For any object * request with this key name prefix, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value PENDING, COMPLETED or * FAILED indicating object replication status.</p> </li> <li> <p> <b>If requesting * an object from a destination bucket</b>, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value REPLICA if the object in * your request is a replica that Amazon S3 created and there is no replica * modification replication in progress.</p> </li> <li> <p> <b>When replicating * objects to multiple destination buckets</b>, the * <code>x-amz-replication-status</code> header acts differently. The header of the * source object will only return a value of COMPLETED when replication is * successful to all destinations. The header will remain at value PENDING until * replication has completed for all destinations. If one or more destinations * fails replication the header will return FAILED. </p> </li> </ul> <p>For more * information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html">Replication</a>.</p> */ inline void SetReplicationStatus(const ReplicationStatus& value) { m_replicationStatus = value; } /** * <p>Amazon S3 can return this header if your request involves a bucket that is * either a source or a destination in a replication rule.</p> <p>In replication, * you have a source bucket on which you configure replication and destination * bucket or buckets where Amazon S3 stores object replicas. When you request an * object (<code>GetObject</code>) or object metadata (<code>HeadObject</code>) * from these buckets, Amazon S3 will return the * <code>x-amz-replication-status</code> header in the response as follows:</p> * <ul> <li> <p> <b>If requesting an object from the source bucket</b>, Amazon S3 * will return the <code>x-amz-replication-status</code> header if the object in * your request is eligible for replication.</p> <p> For example, suppose that in * your replication configuration, you specify object prefix <code>TaxDocs</code> * requesting Amazon S3 to replicate objects with key prefix <code>TaxDocs</code>. * Any objects you upload with this key name prefix, for example * <code>TaxDocs/document1.pdf</code>, are eligible for replication. For any object * request with this key name prefix, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value PENDING, COMPLETED or * FAILED indicating object replication status.</p> </li> <li> <p> <b>If requesting * an object from a destination bucket</b>, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value REPLICA if the object in * your request is a replica that Amazon S3 created and there is no replica * modification replication in progress.</p> </li> <li> <p> <b>When replicating * objects to multiple destination buckets</b>, the * <code>x-amz-replication-status</code> header acts differently. The header of the * source object will only return a value of COMPLETED when replication is * successful to all destinations. The header will remain at value PENDING until * replication has completed for all destinations. If one or more destinations * fails replication the header will return FAILED. </p> </li> </ul> <p>For more * information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html">Replication</a>.</p> */ inline void SetReplicationStatus(ReplicationStatus&& value) { m_replicationStatus = std::move(value); } /** * <p>Amazon S3 can return this header if your request involves a bucket that is * either a source or a destination in a replication rule.</p> <p>In replication, * you have a source bucket on which you configure replication and destination * bucket or buckets where Amazon S3 stores object replicas. When you request an * object (<code>GetObject</code>) or object metadata (<code>HeadObject</code>) * from these buckets, Amazon S3 will return the * <code>x-amz-replication-status</code> header in the response as follows:</p> * <ul> <li> <p> <b>If requesting an object from the source bucket</b>, Amazon S3 * will return the <code>x-amz-replication-status</code> header if the object in * your request is eligible for replication.</p> <p> For example, suppose that in * your replication configuration, you specify object prefix <code>TaxDocs</code> * requesting Amazon S3 to replicate objects with key prefix <code>TaxDocs</code>. * Any objects you upload with this key name prefix, for example * <code>TaxDocs/document1.pdf</code>, are eligible for replication. For any object * request with this key name prefix, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value PENDING, COMPLETED or * FAILED indicating object replication status.</p> </li> <li> <p> <b>If requesting * an object from a destination bucket</b>, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value REPLICA if the object in * your request is a replica that Amazon S3 created and there is no replica * modification replication in progress.</p> </li> <li> <p> <b>When replicating * objects to multiple destination buckets</b>, the * <code>x-amz-replication-status</code> header acts differently. The header of the * source object will only return a value of COMPLETED when replication is * successful to all destinations. The header will remain at value PENDING until * replication has completed for all destinations. If one or more destinations * fails replication the header will return FAILED. </p> </li> </ul> <p>For more * information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html">Replication</a>.</p> */ inline HeadObjectResult& WithReplicationStatus(const ReplicationStatus& value) { SetReplicationStatus(value); return *this;} /** * <p>Amazon S3 can return this header if your request involves a bucket that is * either a source or a destination in a replication rule.</p> <p>In replication, * you have a source bucket on which you configure replication and destination * bucket or buckets where Amazon S3 stores object replicas. When you request an * object (<code>GetObject</code>) or object metadata (<code>HeadObject</code>) * from these buckets, Amazon S3 will return the * <code>x-amz-replication-status</code> header in the response as follows:</p> * <ul> <li> <p> <b>If requesting an object from the source bucket</b>, Amazon S3 * will return the <code>x-amz-replication-status</code> header if the object in * your request is eligible for replication.</p> <p> For example, suppose that in * your replication configuration, you specify object prefix <code>TaxDocs</code> * requesting Amazon S3 to replicate objects with key prefix <code>TaxDocs</code>. * Any objects you upload with this key name prefix, for example * <code>TaxDocs/document1.pdf</code>, are eligible for replication. For any object * request with this key name prefix, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value PENDING, COMPLETED or * FAILED indicating object replication status.</p> </li> <li> <p> <b>If requesting * an object from a destination bucket</b>, Amazon S3 will return the * <code>x-amz-replication-status</code> header with value REPLICA if the object in * your request is a replica that Amazon S3 created and there is no replica * modification replication in progress.</p> </li> <li> <p> <b>When replicating * objects to multiple destination buckets</b>, the * <code>x-amz-replication-status</code> header acts differently. The header of the * source object will only return a value of COMPLETED when replication is * successful to all destinations. The header will remain at value PENDING until * replication has completed for all destinations. If one or more destinations * fails replication the header will return FAILED. </p> </li> </ul> <p>For more * information, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html">Replication</a>.</p> */ inline HeadObjectResult& WithReplicationStatus(ReplicationStatus&& value) { SetReplicationStatus(std::move(value)); return *this;} /** * <p>The count of parts this object has. This value is only returned if you * specify <code>partNumber</code> in your request and the object was uploaded as a * multipart upload.</p> */ inline int GetPartsCount() const{ return m_partsCount; } /** * <p>The count of parts this object has. This value is only returned if you * specify <code>partNumber</code> in your request and the object was uploaded as a * multipart upload.</p> */ inline void SetPartsCount(int value) { m_partsCount = value; } /** * <p>The count of parts this object has. This value is only returned if you * specify <code>partNumber</code> in your request and the object was uploaded as a * multipart upload.</p> */ inline HeadObjectResult& WithPartsCount(int value) { SetPartsCount(value); return *this;} /** * <p>The Object Lock mode, if any, that's in effect for this object. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission. For more information about S3 Object Lock, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>. </p> */ inline const ObjectLockMode& GetObjectLockMode() const{ return m_objectLockMode; } /** * <p>The Object Lock mode, if any, that's in effect for this object. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission. For more information about S3 Object Lock, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>. </p> */ inline void SetObjectLockMode(const ObjectLockMode& value) { m_objectLockMode = value; } /** * <p>The Object Lock mode, if any, that's in effect for this object. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission. For more information about S3 Object Lock, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>. </p> */ inline void SetObjectLockMode(ObjectLockMode&& value) { m_objectLockMode = std::move(value); } /** * <p>The Object Lock mode, if any, that's in effect for this object. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission. For more information about S3 Object Lock, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>. </p> */ inline HeadObjectResult& WithObjectLockMode(const ObjectLockMode& value) { SetObjectLockMode(value); return *this;} /** * <p>The Object Lock mode, if any, that's in effect for this object. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission. For more information about S3 Object Lock, see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>. </p> */ inline HeadObjectResult& WithObjectLockMode(ObjectLockMode&& value) { SetObjectLockMode(std::move(value)); return *this;} /** * <p>The date and time when the Object Lock retention period expires. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission.</p> */ inline const Aws::Utils::DateTime& GetObjectLockRetainUntilDate() const{ return m_objectLockRetainUntilDate; } /** * <p>The date and time when the Object Lock retention period expires. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission.</p> */ inline void SetObjectLockRetainUntilDate(const Aws::Utils::DateTime& value) { m_objectLockRetainUntilDate = value; } /** * <p>The date and time when the Object Lock retention period expires. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission.</p> */ inline void SetObjectLockRetainUntilDate(Aws::Utils::DateTime&& value) { m_objectLockRetainUntilDate = std::move(value); } /** * <p>The date and time when the Object Lock retention period expires. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission.</p> */ inline HeadObjectResult& WithObjectLockRetainUntilDate(const Aws::Utils::DateTime& value) { SetObjectLockRetainUntilDate(value); return *this;} /** * <p>The date and time when the Object Lock retention period expires. This header * is only returned if the requester has the <code>s3:GetObjectRetention</code> * permission.</p> */ inline HeadObjectResult& WithObjectLockRetainUntilDate(Aws::Utils::DateTime&& value) { SetObjectLockRetainUntilDate(std::move(value)); return *this;} /** * <p>Specifies whether a legal hold is in effect for this object. This header is * only returned if the requester has the <code>s3:GetObjectLegalHold</code> * permission. This header is not returned if the specified version of this object * has never had a legal hold applied. For more information about S3 Object Lock, * see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>.</p> */ inline const ObjectLockLegalHoldStatus& GetObjectLockLegalHoldStatus() const{ return m_objectLockLegalHoldStatus; } /** * <p>Specifies whether a legal hold is in effect for this object. This header is * only returned if the requester has the <code>s3:GetObjectLegalHold</code> * permission. This header is not returned if the specified version of this object * has never had a legal hold applied. For more information about S3 Object Lock, * see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>.</p> */ inline void SetObjectLockLegalHoldStatus(const ObjectLockLegalHoldStatus& value) { m_objectLockLegalHoldStatus = value; } /** * <p>Specifies whether a legal hold is in effect for this object. This header is * only returned if the requester has the <code>s3:GetObjectLegalHold</code> * permission. This header is not returned if the specified version of this object * has never had a legal hold applied. For more information about S3 Object Lock, * see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>.</p> */ inline void SetObjectLockLegalHoldStatus(ObjectLockLegalHoldStatus&& value) { m_objectLockLegalHoldStatus = std::move(value); } /** * <p>Specifies whether a legal hold is in effect for this object. This header is * only returned if the requester has the <code>s3:GetObjectLegalHold</code> * permission. This header is not returned if the specified version of this object * has never had a legal hold applied. For more information about S3 Object Lock, * see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>.</p> */ inline HeadObjectResult& WithObjectLockLegalHoldStatus(const ObjectLockLegalHoldStatus& value) { SetObjectLockLegalHoldStatus(value); return *this;} /** * <p>Specifies whether a legal hold is in effect for this object. This header is * only returned if the requester has the <code>s3:GetObjectLegalHold</code> * permission. This header is not returned if the specified version of this object * has never had a legal hold applied. For more information about S3 Object Lock, * see <a * href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html">Object * Lock</a>.</p> */ inline HeadObjectResult& WithObjectLockLegalHoldStatus(ObjectLockLegalHoldStatus&& value) { SetObjectLockLegalHoldStatus(std::move(value)); return *this;} private: bool m_deleteMarker; Aws::String m_acceptRanges; Aws::String m_expiration; Aws::String m_restore; ArchiveStatus m_archiveStatus; Aws::Utils::DateTime m_lastModified; long long m_contentLength; Aws::String m_checksumCRC32; Aws::String m_checksumCRC32C; Aws::String m_checksumSHA1; Aws::String m_checksumSHA256; Aws::String m_eTag; int m_missingMeta; Aws::String m_versionId; Aws::String m_cacheControl; Aws::String m_contentDisposition; Aws::String m_contentEncoding; Aws::String m_contentLanguage; Aws::String m_contentType; Aws::Utils::DateTime m_expires; Aws::String m_websiteRedirectLocation; ServerSideEncryption m_serverSideEncryption; Aws::Map<Aws::String, Aws::String> m_metadata; Aws::String m_sSECustomerAlgorithm; Aws::String m_sSECustomerKeyMD5; Aws::String m_sSEKMSKeyId; bool m_bucketKeyEnabled; StorageClass m_storageClass; RequestCharged m_requestCharged; ReplicationStatus m_replicationStatus; int m_partsCount; ObjectLockMode m_objectLockMode; Aws::Utils::DateTime m_objectLockRetainUntilDate; ObjectLockLegalHoldStatus m_objectLockLegalHoldStatus; }; } // namespace Model } // namespace S3 } // namespace Aws