/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace S3 { namespace Model { /** */ class PutObjectRequest : public StreamingS3Request { public: AWS_S3_API PutObjectRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "PutObject"; } AWS_S3_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; AWS_S3_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; AWS_S3_API bool HasEmbeddedError(IOStream &body, const Http::HeaderValueCollection &header) const override; AWS_S3_API Aws::String GetChecksumAlgorithmName() const override; /** * Helper function to collect parameters (configurable and static hardcoded) required for endpoint computation. */ AWS_S3_API EndpointParameters GetEndpointContextParams() const override; ///@{ /** *

The canned ACL to apply to the object. For more information, see Canned * ACL in the Amazon S3 User Guide.

When adding a new object, you * can use headers to grant ACL-based permissions to individual Amazon Web Services * accounts or to predefined groups defined by Amazon S3. These permissions are * then added to the ACL on the object. By default, all objects are private. Only * the owner has full access control. For more information, see Access * Control List (ACL) Overview and Managing * ACLs Using the REST API in the Amazon S3 User Guide.

If the * bucket that you're uploading objects to uses the bucket owner enforced setting * for S3 Object Ownership, ACLs are disabled and no longer affect permissions. * Buckets that use this setting only accept PUT requests that don't specify an ACL * or PUT requests that specify bucket owner full control ACLs, such as the * bucket-owner-full-control canned ACL or an equivalent form of this * ACL expressed in the XML format. PUT requests that contain other ACLs (for * example, custom grants to certain Amazon Web Services accounts) fail and return * a 400 error with the error code * AccessControlListNotSupported. For more information, see * Controlling ownership of objects and disabling ACLs in the Amazon S3 User * Guide.

  • This functionality is not supported for * directory buckets.

  • This functionality is not supported for * Amazon S3 on Outposts.

*/ inline const ObjectCannedACL& GetACL() const{ return m_aCL; } inline bool ACLHasBeenSet() const { return m_aCLHasBeenSet; } inline void SetACL(const ObjectCannedACL& value) { m_aCLHasBeenSet = true; m_aCL = value; } inline void SetACL(ObjectCannedACL&& value) { m_aCLHasBeenSet = true; m_aCL = std::move(value); } inline PutObjectRequest& WithACL(const ObjectCannedACL& value) { SetACL(value); return *this;} inline PutObjectRequest& WithACL(ObjectCannedACL&& value) { SetACL(std::move(value)); return *this;} ///@} ///@{ /** *

The bucket name to which the PUT action was initiated.

Directory * buckets - When you use this operation with a directory bucket, you must use * virtual-hosted-style requests in the format * Bucket_name.s3express-az_id.region.amazonaws.com. * Path-style requests are not supported. Directory bucket names must be unique in * the chosen Availability Zone. Bucket names must follow the format * bucket_base_name--az-id--x-s3 (for example, * DOC-EXAMPLE-BUCKET--usw2-az1--x-s3). For information about * bucket naming restrictions, see Directory * bucket naming rules in the Amazon S3 User Guide.

Access * points - When you use this action with an access point, you must provide the * alias of the access point in place of the bucket name or specify the access * point ARN. When using the access point ARN, you must direct requests to the * access point hostname. The access point hostname takes the form * AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. * When using this action with an access point through the Amazon Web Services * SDKs, you provide the access point ARN in place of the bucket name. For more * information about access point ARNs, see Using * access points in the Amazon S3 User Guide.

Access * points and Object Lambda access points are not supported by directory * buckets.

S3 on Outposts - When you use this action with * Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. * The S3 on Outposts hostname takes the form * AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com. * When you use this action with S3 on Outposts through the Amazon Web Services * SDKs, you provide the Outposts access point ARN in place of the bucket name. For * more information about S3 on Outposts ARNs, see What * is S3 on Outposts? in the Amazon S3 User Guide.

*/ inline const Aws::String& GetBucket() const{ return m_bucket; } inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; } inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; } inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); } inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); } inline PutObjectRequest& WithBucket(const Aws::String& value) { SetBucket(value); return *this;} inline PutObjectRequest& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;} inline PutObjectRequest& WithBucket(const char* value) { SetBucket(value); return *this;} ///@} ///@{ /** *

Can be used to specify caching behavior along the request/reply chain. For * more information, see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.

*/ inline const Aws::String& GetCacheControl() const{ return m_cacheControl; } inline bool CacheControlHasBeenSet() const { return m_cacheControlHasBeenSet; } inline void SetCacheControl(const Aws::String& value) { m_cacheControlHasBeenSet = true; m_cacheControl = value; } inline void SetCacheControl(Aws::String&& value) { m_cacheControlHasBeenSet = true; m_cacheControl = std::move(value); } inline void SetCacheControl(const char* value) { m_cacheControlHasBeenSet = true; m_cacheControl.assign(value); } inline PutObjectRequest& WithCacheControl(const Aws::String& value) { SetCacheControl(value); return *this;} inline PutObjectRequest& WithCacheControl(Aws::String&& value) { SetCacheControl(std::move(value)); return *this;} inline PutObjectRequest& WithCacheControl(const char* value) { SetCacheControl(value); return *this;} ///@} ///@{ /** *

Specifies presentational information for the object. For more information, * see https://www.rfc-editor.org/rfc/rfc6266#section-4.

*/ inline const Aws::String& GetContentDisposition() const{ return m_contentDisposition; } inline bool ContentDispositionHasBeenSet() const { return m_contentDispositionHasBeenSet; } inline void SetContentDisposition(const Aws::String& value) { m_contentDispositionHasBeenSet = true; m_contentDisposition = value; } inline void SetContentDisposition(Aws::String&& value) { m_contentDispositionHasBeenSet = true; m_contentDisposition = std::move(value); } inline void SetContentDisposition(const char* value) { m_contentDispositionHasBeenSet = true; m_contentDisposition.assign(value); } inline PutObjectRequest& WithContentDisposition(const Aws::String& value) { SetContentDisposition(value); return *this;} inline PutObjectRequest& WithContentDisposition(Aws::String&& value) { SetContentDisposition(std::move(value)); return *this;} inline PutObjectRequest& WithContentDisposition(const char* value) { SetContentDisposition(value); return *this;} ///@} ///@{ /** *

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. For more information, see https://www.rfc-editor.org/rfc/rfc9110.html#field.content-encoding.

*/ inline const Aws::String& GetContentEncoding() const{ return m_contentEncoding; } inline bool ContentEncodingHasBeenSet() const { return m_contentEncodingHasBeenSet; } inline void SetContentEncoding(const Aws::String& value) { m_contentEncodingHasBeenSet = true; m_contentEncoding = value; } inline void SetContentEncoding(Aws::String&& value) { m_contentEncodingHasBeenSet = true; m_contentEncoding = std::move(value); } inline void SetContentEncoding(const char* value) { m_contentEncodingHasBeenSet = true; m_contentEncoding.assign(value); } inline PutObjectRequest& WithContentEncoding(const Aws::String& value) { SetContentEncoding(value); return *this;} inline PutObjectRequest& WithContentEncoding(Aws::String&& value) { SetContentEncoding(std::move(value)); return *this;} inline PutObjectRequest& WithContentEncoding(const char* value) { SetContentEncoding(value); return *this;} ///@} ///@{ /** *

The language the content is in.

*/ inline const Aws::String& GetContentLanguage() const{ return m_contentLanguage; } inline bool ContentLanguageHasBeenSet() const { return m_contentLanguageHasBeenSet; } inline void SetContentLanguage(const Aws::String& value) { m_contentLanguageHasBeenSet = true; m_contentLanguage = value; } inline void SetContentLanguage(Aws::String&& value) { m_contentLanguageHasBeenSet = true; m_contentLanguage = std::move(value); } inline void SetContentLanguage(const char* value) { m_contentLanguageHasBeenSet = true; m_contentLanguage.assign(value); } inline PutObjectRequest& WithContentLanguage(const Aws::String& value) { SetContentLanguage(value); return *this;} inline PutObjectRequest& WithContentLanguage(Aws::String&& value) { SetContentLanguage(std::move(value)); return *this;} inline PutObjectRequest& WithContentLanguage(const char* value) { SetContentLanguage(value); return *this;} ///@} ///@{ /** *

Size of the body in bytes. This parameter is useful when the size of the body * cannot be determined automatically. For more information, see https://www.rfc-editor.org/rfc/rfc9110.html#name-content-length.

*/ inline long long GetContentLength() const{ return m_contentLength; } inline bool ContentLengthHasBeenSet() const { return m_contentLengthHasBeenSet; } inline void SetContentLength(long long value) { m_contentLengthHasBeenSet = true; m_contentLength = value; } inline PutObjectRequest& WithContentLength(long long value) { SetContentLength(value); return *this;} ///@} ///@{ /** *

The base64-encoded 128-bit MD5 digest of the message (without the headers) * according to RFC 1864. This header can be used as a message integrity check to * verify that the data is the same data that was originally sent. Although it is * optional, we recommend using the Content-MD5 mechanism as an end-to-end * integrity check. For more information about REST request authentication, see REST * Authentication.

The Content-MD5 or * x-amz-sdk-checksum-algorithm header is required for any request to * upload an object with a retention period configured using Amazon S3 Object Lock. * For more information, see Uploading * objects to an Object Lock enabled bucket in the Amazon S3 User * Guide.

This functionality is not supported for * directory buckets.

*/ inline const Aws::String& GetContentMD5() const{ return m_contentMD5; } inline bool ContentMD5HasBeenSet() const { return m_contentMD5HasBeenSet; } inline void SetContentMD5(const Aws::String& value) { m_contentMD5HasBeenSet = true; m_contentMD5 = value; } inline void SetContentMD5(Aws::String&& value) { m_contentMD5HasBeenSet = true; m_contentMD5 = std::move(value); } inline void SetContentMD5(const char* value) { m_contentMD5HasBeenSet = true; m_contentMD5.assign(value); } inline PutObjectRequest& WithContentMD5(const Aws::String& value) { SetContentMD5(value); return *this;} inline PutObjectRequest& WithContentMD5(Aws::String&& value) { SetContentMD5(std::move(value)); return *this;} inline PutObjectRequest& WithContentMD5(const char* value) { SetContentMD5(value); return *this;} ///@} ///@{ /** *

Indicates the algorithm used to create the checksum for the object when you * use the SDK. This header will not provide any additional functionality if you * don't use the SDK. When you send this header, there must be a corresponding * x-amz-checksum-algorithm or x-amz-trailer * header sent. Otherwise, Amazon S3 fails the request with the HTTP status code * 400 Bad Request.

For the * x-amz-checksum-algorithm header, replace * algorithm with the supported algorithm from the following list: *

  • CRC32

  • CRC32C *

  • SHA1

  • SHA256 *

For more information, see Checking * object integrity in the Amazon S3 User Guide.

If the * individual checksum value you provide through * x-amz-checksum-algorithm doesn't match the checksum * algorithm you set through x-amz-sdk-checksum-algorithm, Amazon S3 * ignores any provided ChecksumAlgorithm parameter and uses the * checksum algorithm that matches the provided value in * x-amz-checksum-algorithm .

The * Content-MD5 or x-amz-sdk-checksum-algorithm header is * required for any request to upload an object with a retention period configured * using Amazon S3 Object Lock. For more information, see Uploading * objects to an Object Lock enabled bucket in the Amazon S3 User * Guide.

For directory buckets, when you use Amazon Web * Services SDKs, CRC32 is the default checksum algorithm that's used * for performance.

*/ inline const ChecksumAlgorithm& GetChecksumAlgorithm() const{ return m_checksumAlgorithm; } inline bool ChecksumAlgorithmHasBeenSet() const { return m_checksumAlgorithmHasBeenSet; } inline void SetChecksumAlgorithm(const ChecksumAlgorithm& value) { m_checksumAlgorithmHasBeenSet = true; m_checksumAlgorithm = value; } inline void SetChecksumAlgorithm(ChecksumAlgorithm&& value) { m_checksumAlgorithmHasBeenSet = true; m_checksumAlgorithm = std::move(value); } inline PutObjectRequest& WithChecksumAlgorithm(const ChecksumAlgorithm& value) { SetChecksumAlgorithm(value); return *this;} inline PutObjectRequest& WithChecksumAlgorithm(ChecksumAlgorithm&& value) { SetChecksumAlgorithm(std::move(value)); return *this;} ///@} ///@{ /** *

This header can be used as a data integrity check to verify that the data * received is the same data that was originally sent. This header specifies the * base64-encoded, 32-bit CRC-32 checksum of the object. For more information, see * Checking * object integrity in the Amazon S3 User Guide.

*/ inline const Aws::String& GetChecksumCRC32() const{ return m_checksumCRC32; } inline bool ChecksumCRC32HasBeenSet() const { return m_checksumCRC32HasBeenSet; } inline void SetChecksumCRC32(const Aws::String& value) { m_checksumCRC32HasBeenSet = true; m_checksumCRC32 = value; SetChecksumAlgorithm(ChecksumAlgorithm::CRC32); } inline void SetChecksumCRC32(Aws::String&& value) { m_checksumCRC32HasBeenSet = true; m_checksumCRC32 = std::move(value); SetChecksumAlgorithm(ChecksumAlgorithm::CRC32); } inline void SetChecksumCRC32(const char* value) { m_checksumCRC32HasBeenSet = true; m_checksumCRC32.assign(value); SetChecksumAlgorithm(ChecksumAlgorithm::CRC32); } inline PutObjectRequest& WithChecksumCRC32(const Aws::String& value) { SetChecksumCRC32(value); return *this;} inline PutObjectRequest& WithChecksumCRC32(Aws::String&& value) { SetChecksumCRC32(std::move(value)); return *this;} inline PutObjectRequest& WithChecksumCRC32(const char* value) { SetChecksumCRC32(value); return *this;} ///@} ///@{ /** *

This header can be used as a data integrity check to verify that the data * received is the same data that was originally sent. This header specifies the * base64-encoded, 32-bit CRC-32C checksum of the object. For more information, see * Checking * object integrity in the Amazon S3 User Guide.

*/ inline const Aws::String& GetChecksumCRC32C() const{ return m_checksumCRC32C; } inline bool ChecksumCRC32CHasBeenSet() const { return m_checksumCRC32CHasBeenSet; } inline void SetChecksumCRC32C(const Aws::String& value) { m_checksumCRC32CHasBeenSet = true; m_checksumCRC32C = value; SetChecksumAlgorithm(ChecksumAlgorithm::CRC32C); } inline void SetChecksumCRC32C(Aws::String&& value) { m_checksumCRC32CHasBeenSet = true; m_checksumCRC32C = std::move(value); SetChecksumAlgorithm(ChecksumAlgorithm::CRC32C); } inline void SetChecksumCRC32C(const char* value) { m_checksumCRC32CHasBeenSet = true; m_checksumCRC32C.assign(value); SetChecksumAlgorithm(ChecksumAlgorithm::CRC32C); } inline PutObjectRequest& WithChecksumCRC32C(const Aws::String& value) { SetChecksumCRC32C(value); return *this;} inline PutObjectRequest& WithChecksumCRC32C(Aws::String&& value) { SetChecksumCRC32C(std::move(value)); return *this;} inline PutObjectRequest& WithChecksumCRC32C(const char* value) { SetChecksumCRC32C(value); return *this;} ///@} ///@{ /** *

This header can be used as a data integrity check to verify that the data * received is the same data that was originally sent. This header specifies the * base64-encoded, 160-bit SHA-1 digest of the object. For more information, see Checking * object integrity in the Amazon S3 User Guide.

*/ inline const Aws::String& GetChecksumSHA1() const{ return m_checksumSHA1; } inline bool ChecksumSHA1HasBeenSet() const { return m_checksumSHA1HasBeenSet; } inline void SetChecksumSHA1(const Aws::String& value) { m_checksumSHA1HasBeenSet = true; m_checksumSHA1 = value; SetChecksumAlgorithm(ChecksumAlgorithm::SHA1); } inline void SetChecksumSHA1(Aws::String&& value) { m_checksumSHA1HasBeenSet = true; m_checksumSHA1 = std::move(value); SetChecksumAlgorithm(ChecksumAlgorithm::SHA1); } inline void SetChecksumSHA1(const char* value) { m_checksumSHA1HasBeenSet = true; m_checksumSHA1.assign(value); SetChecksumAlgorithm(ChecksumAlgorithm::SHA1); } inline PutObjectRequest& WithChecksumSHA1(const Aws::String& value) { SetChecksumSHA1(value); return *this;} inline PutObjectRequest& WithChecksumSHA1(Aws::String&& value) { SetChecksumSHA1(std::move(value)); return *this;} inline PutObjectRequest& WithChecksumSHA1(const char* value) { SetChecksumSHA1(value); return *this;} ///@} ///@{ /** *

This header can be used as a data integrity check to verify that the data * received is the same data that was originally sent. This header specifies the * base64-encoded, 256-bit SHA-256 digest of the object. For more information, see * Checking * object integrity in the Amazon S3 User Guide.

*/ inline const Aws::String& GetChecksumSHA256() const{ return m_checksumSHA256; } inline bool ChecksumSHA256HasBeenSet() const { return m_checksumSHA256HasBeenSet; } inline void SetChecksumSHA256(const Aws::String& value) { m_checksumSHA256HasBeenSet = true; m_checksumSHA256 = value; SetChecksumAlgorithm(ChecksumAlgorithm::SHA256); } inline void SetChecksumSHA256(Aws::String&& value) { m_checksumSHA256HasBeenSet = true; m_checksumSHA256 = std::move(value); SetChecksumAlgorithm(ChecksumAlgorithm::SHA256); } inline void SetChecksumSHA256(const char* value) { m_checksumSHA256HasBeenSet = true; m_checksumSHA256.assign(value); SetChecksumAlgorithm(ChecksumAlgorithm::SHA256); } inline PutObjectRequest& WithChecksumSHA256(const Aws::String& value) { SetChecksumSHA256(value); return *this;} inline PutObjectRequest& WithChecksumSHA256(Aws::String&& value) { SetChecksumSHA256(std::move(value)); return *this;} inline PutObjectRequest& WithChecksumSHA256(const char* value) { SetChecksumSHA256(value); return *this;} ///@} ///@{ /** *

The date and time at which the object is no longer cacheable. For more * information, see https://www.rfc-editor.org/rfc/rfc7234#section-5.3.

*/ inline const Aws::Utils::DateTime& GetExpires() const{ return m_expires; } inline bool ExpiresHasBeenSet() const { return m_expiresHasBeenSet; } inline void SetExpires(const Aws::Utils::DateTime& value) { m_expiresHasBeenSet = true; m_expires = value; } inline void SetExpires(Aws::Utils::DateTime&& value) { m_expiresHasBeenSet = true; m_expires = std::move(value); } inline PutObjectRequest& WithExpires(const Aws::Utils::DateTime& value) { SetExpires(value); return *this;} inline PutObjectRequest& WithExpires(Aws::Utils::DateTime&& value) { SetExpires(std::move(value)); return *this;} ///@} ///@{ /** *

Uploads the object only if the object key name does not already exist in the * bucket specified. Otherwise, Amazon S3 returns a 412 Precondition * Failed error.

If a conflicting operation occurs during the upload * S3 returns a 409 ConditionalRequestConflict response. On a 409 * failure you should retry the upload.

Expects the '*' (asterisk) * character.

For more information about conditional requests, see RFC 7232, or Conditional * requests in the Amazon S3 User Guide.

*/ inline const Aws::String& GetIfNoneMatch() const{ return m_ifNoneMatch; } inline bool IfNoneMatchHasBeenSet() const { return m_ifNoneMatchHasBeenSet; } inline void SetIfNoneMatch(const Aws::String& value) { m_ifNoneMatchHasBeenSet = true; m_ifNoneMatch = value; } inline void SetIfNoneMatch(Aws::String&& value) { m_ifNoneMatchHasBeenSet = true; m_ifNoneMatch = std::move(value); } inline void SetIfNoneMatch(const char* value) { m_ifNoneMatchHasBeenSet = true; m_ifNoneMatch.assign(value); } inline PutObjectRequest& WithIfNoneMatch(const Aws::String& value) { SetIfNoneMatch(value); return *this;} inline PutObjectRequest& WithIfNoneMatch(Aws::String&& value) { SetIfNoneMatch(std::move(value)); return *this;} inline PutObjectRequest& WithIfNoneMatch(const char* value) { SetIfNoneMatch(value); return *this;} ///@} ///@{ /** *

Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the * object.

  • This functionality is not supported for * directory buckets.

  • This functionality is not supported for * Amazon S3 on Outposts.

*/ inline const Aws::String& GetGrantFullControl() const{ return m_grantFullControl; } inline bool GrantFullControlHasBeenSet() const { return m_grantFullControlHasBeenSet; } inline void SetGrantFullControl(const Aws::String& value) { m_grantFullControlHasBeenSet = true; m_grantFullControl = value; } inline void SetGrantFullControl(Aws::String&& value) { m_grantFullControlHasBeenSet = true; m_grantFullControl = std::move(value); } inline void SetGrantFullControl(const char* value) { m_grantFullControlHasBeenSet = true; m_grantFullControl.assign(value); } inline PutObjectRequest& WithGrantFullControl(const Aws::String& value) { SetGrantFullControl(value); return *this;} inline PutObjectRequest& WithGrantFullControl(Aws::String&& value) { SetGrantFullControl(std::move(value)); return *this;} inline PutObjectRequest& WithGrantFullControl(const char* value) { SetGrantFullControl(value); return *this;} ///@} ///@{ /** *

Allows grantee to read the object data and its metadata.

  • *

    This functionality is not supported for directory buckets.

  • *

    This functionality is not supported for Amazon S3 on Outposts.

  • *
*/ inline const Aws::String& GetGrantRead() const{ return m_grantRead; } inline bool GrantReadHasBeenSet() const { return m_grantReadHasBeenSet; } inline void SetGrantRead(const Aws::String& value) { m_grantReadHasBeenSet = true; m_grantRead = value; } inline void SetGrantRead(Aws::String&& value) { m_grantReadHasBeenSet = true; m_grantRead = std::move(value); } inline void SetGrantRead(const char* value) { m_grantReadHasBeenSet = true; m_grantRead.assign(value); } inline PutObjectRequest& WithGrantRead(const Aws::String& value) { SetGrantRead(value); return *this;} inline PutObjectRequest& WithGrantRead(Aws::String&& value) { SetGrantRead(std::move(value)); return *this;} inline PutObjectRequest& WithGrantRead(const char* value) { SetGrantRead(value); return *this;} ///@} ///@{ /** *

Allows grantee to read the object ACL.

  • This * functionality is not supported for directory buckets.

  • This * functionality is not supported for Amazon S3 on Outposts.

* */ inline const Aws::String& GetGrantReadACP() const{ return m_grantReadACP; } inline bool GrantReadACPHasBeenSet() const { return m_grantReadACPHasBeenSet; } inline void SetGrantReadACP(const Aws::String& value) { m_grantReadACPHasBeenSet = true; m_grantReadACP = value; } inline void SetGrantReadACP(Aws::String&& value) { m_grantReadACPHasBeenSet = true; m_grantReadACP = std::move(value); } inline void SetGrantReadACP(const char* value) { m_grantReadACPHasBeenSet = true; m_grantReadACP.assign(value); } inline PutObjectRequest& WithGrantReadACP(const Aws::String& value) { SetGrantReadACP(value); return *this;} inline PutObjectRequest& WithGrantReadACP(Aws::String&& value) { SetGrantReadACP(std::move(value)); return *this;} inline PutObjectRequest& WithGrantReadACP(const char* value) { SetGrantReadACP(value); return *this;} ///@} ///@{ /** *

Allows grantee to write the ACL for the applicable object.

    *
  • This functionality is not supported for directory buckets.

  • *
  • This functionality is not supported for Amazon S3 on Outposts.

  • *
*/ inline const Aws::String& GetGrantWriteACP() const{ return m_grantWriteACP; } inline bool GrantWriteACPHasBeenSet() const { return m_grantWriteACPHasBeenSet; } inline void SetGrantWriteACP(const Aws::String& value) { m_grantWriteACPHasBeenSet = true; m_grantWriteACP = value; } inline void SetGrantWriteACP(Aws::String&& value) { m_grantWriteACPHasBeenSet = true; m_grantWriteACP = std::move(value); } inline void SetGrantWriteACP(const char* value) { m_grantWriteACPHasBeenSet = true; m_grantWriteACP.assign(value); } inline PutObjectRequest& WithGrantWriteACP(const Aws::String& value) { SetGrantWriteACP(value); return *this;} inline PutObjectRequest& WithGrantWriteACP(Aws::String&& value) { SetGrantWriteACP(std::move(value)); return *this;} inline PutObjectRequest& WithGrantWriteACP(const char* value) { SetGrantWriteACP(value); return *this;} ///@} ///@{ /** *

Object key for which the PUT action was initiated.

*/ inline const Aws::String& GetKey() const{ return m_key; } inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } inline PutObjectRequest& WithKey(const Aws::String& value) { SetKey(value); return *this;} inline PutObjectRequest& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} inline PutObjectRequest& WithKey(const char* value) { SetKey(value); return *this;} ///@} ///@{ /** *

A map of metadata to store with the object in S3.

*/ inline const Aws::Map& GetMetadata() const{ return m_metadata; } inline bool MetadataHasBeenSet() const { return m_metadataHasBeenSet; } inline void SetMetadata(const Aws::Map& value) { m_metadataHasBeenSet = true; m_metadata = value; } inline void SetMetadata(Aws::Map&& value) { m_metadataHasBeenSet = true; m_metadata = std::move(value); } inline PutObjectRequest& WithMetadata(const Aws::Map& value) { SetMetadata(value); return *this;} inline PutObjectRequest& WithMetadata(Aws::Map&& value) { SetMetadata(std::move(value)); return *this;} inline PutObjectRequest& AddMetadata(const Aws::String& key, const Aws::String& value) { m_metadataHasBeenSet = true; m_metadata.emplace(key, value); return *this; } inline PutObjectRequest& AddMetadata(Aws::String&& key, const Aws::String& value) { m_metadataHasBeenSet = true; m_metadata.emplace(std::move(key), value); return *this; } inline PutObjectRequest& AddMetadata(const Aws::String& key, Aws::String&& value) { m_metadataHasBeenSet = true; m_metadata.emplace(key, std::move(value)); return *this; } inline PutObjectRequest& AddMetadata(Aws::String&& key, Aws::String&& value) { m_metadataHasBeenSet = true; m_metadata.emplace(std::move(key), std::move(value)); return *this; } inline PutObjectRequest& AddMetadata(const char* key, Aws::String&& value) { m_metadataHasBeenSet = true; m_metadata.emplace(key, std::move(value)); return *this; } inline PutObjectRequest& AddMetadata(Aws::String&& key, const char* value) { m_metadataHasBeenSet = true; m_metadata.emplace(std::move(key), value); return *this; } inline PutObjectRequest& AddMetadata(const char* key, const char* value) { m_metadataHasBeenSet = true; m_metadata.emplace(key, value); return *this; } ///@} ///@{ /** *

The server-side encryption algorithm that was used when you store this object * in Amazon S3 (for example, AES256, aws:kms, * aws:kms:dsse).

  • General purpose buckets - * You have four mutually exclusive options to protect data using server-side * encryption in Amazon S3, depending on how you choose to manage the encryption * keys. Specifically, the encryption key options are Amazon S3 managed keys * (SSE-S3), Amazon Web Services KMS keys (SSE-KMS or DSSE-KMS), and * customer-provided keys (SSE-C). Amazon S3 encrypts data with server-side * encryption by using Amazon S3 managed keys (SSE-S3) by default. You can * optionally tell Amazon S3 to encrypt data at rest by using server-side * encryption with other key options. For more information, see Using * Server-Side Encryption in the Amazon S3 User Guide.

  • *

    Directory buckets - For directory buckets, there are only two * supported options for server-side encryption: server-side encryption with Amazon * S3 managed keys (SSE-S3) (AES256) and server-side encryption with * KMS keys (SSE-KMS) (aws:kms). We recommend that the bucket's * default encryption uses the desired encryption configuration and you don't * override the bucket default encryption in your CreateSession * requests or PUT object requests. Then, new objects are * automatically encrypted with the desired encryption settings. For more * information, see Protecting * data with server-side encryption in the Amazon S3 User Guide. For * more information about the encryption overriding behaviors in directory buckets, * see Specifying * server-side encryption with KMS for new object uploads.

    In the Zonal * endpoint API calls (except CopyObject * and UploadPartCopy) * using the REST API, the encryption request headers must match the encryption * settings that are specified in the CreateSession request. You can't * override the values of the encryption settings * (x-amz-server-side-encryption, * x-amz-server-side-encryption-aws-kms-key-id, * x-amz-server-side-encryption-context, and * x-amz-server-side-encryption-bucket-key-enabled) that are specified * in the CreateSession request. You don't need to explicitly specify * these encryption settings values in Zonal endpoint API calls, and Amazon S3 will * use the encryption settings values from the CreateSession request * to protect new objects in the directory bucket.

    When you use the * CLI or the Amazon Web Services SDKs, for CreateSession, the session * token refreshes automatically to avoid service interruptions when a session * expires. The CLI or the Amazon Web Services SDKs use the bucket's default * encryption configuration for the CreateSession request. It's not * supported to override the encryption settings values in the * CreateSession request. So in the Zonal endpoint API calls (except * CopyObject * and UploadPartCopy), * the encryption request headers must match the default encryption configuration * of the directory bucket.

*/ inline const ServerSideEncryption& GetServerSideEncryption() const{ return m_serverSideEncryption; } inline bool ServerSideEncryptionHasBeenSet() const { return m_serverSideEncryptionHasBeenSet; } inline void SetServerSideEncryption(const ServerSideEncryption& value) { m_serverSideEncryptionHasBeenSet = true; m_serverSideEncryption = value; } inline void SetServerSideEncryption(ServerSideEncryption&& value) { m_serverSideEncryptionHasBeenSet = true; m_serverSideEncryption = std::move(value); } inline PutObjectRequest& WithServerSideEncryption(const ServerSideEncryption& value) { SetServerSideEncryption(value); return *this;} inline PutObjectRequest& WithServerSideEncryption(ServerSideEncryption&& value) { SetServerSideEncryption(std::move(value)); return *this;} ///@} ///@{ /** *

By default, Amazon S3 uses the STANDARD Storage Class to store newly created * objects. The STANDARD storage class provides high durability and high * availability. Depending on performance needs, you can specify a different * Storage Class. For more information, see Storage * Classes in the Amazon S3 User Guide.

  • For * directory buckets, only the S3 Express One Zone storage class is supported to * store newly created objects.

  • Amazon S3 on Outposts only uses * the OUTPOSTS Storage Class.

*/ inline const StorageClass& GetStorageClass() const{ return m_storageClass; } inline bool StorageClassHasBeenSet() const { return m_storageClassHasBeenSet; } inline void SetStorageClass(const StorageClass& value) { m_storageClassHasBeenSet = true; m_storageClass = value; } inline void SetStorageClass(StorageClass&& value) { m_storageClassHasBeenSet = true; m_storageClass = std::move(value); } inline PutObjectRequest& WithStorageClass(const StorageClass& value) { SetStorageClass(value); return *this;} inline PutObjectRequest& WithStorageClass(StorageClass&& value) { SetStorageClass(std::move(value)); return *this;} ///@} ///@{ /** *

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. For information about object * metadata, see Object * Key and Metadata in the Amazon S3 User Guide.

In the following * example, the request header sets the redirect to an object (anotherPage.html) in * the same bucket:

x-amz-website-redirect-location: * /anotherPage.html

In the following example, the request header * sets the object redirect to another website:

* x-amz-website-redirect-location: http://www.example.com/

*

For more information about website hosting in Amazon S3, see Hosting * Websites on Amazon S3 and How * to Configure Website Page Redirects in the Amazon S3 User Guide.

*

This functionality is not supported for directory buckets.

*/ inline const Aws::String& GetWebsiteRedirectLocation() const{ return m_websiteRedirectLocation; } inline bool WebsiteRedirectLocationHasBeenSet() const { return m_websiteRedirectLocationHasBeenSet; } inline void SetWebsiteRedirectLocation(const Aws::String& value) { m_websiteRedirectLocationHasBeenSet = true; m_websiteRedirectLocation = value; } inline void SetWebsiteRedirectLocation(Aws::String&& value) { m_websiteRedirectLocationHasBeenSet = true; m_websiteRedirectLocation = std::move(value); } inline void SetWebsiteRedirectLocation(const char* value) { m_websiteRedirectLocationHasBeenSet = true; m_websiteRedirectLocation.assign(value); } inline PutObjectRequest& WithWebsiteRedirectLocation(const Aws::String& value) { SetWebsiteRedirectLocation(value); return *this;} inline PutObjectRequest& WithWebsiteRedirectLocation(Aws::String&& value) { SetWebsiteRedirectLocation(std::move(value)); return *this;} inline PutObjectRequest& WithWebsiteRedirectLocation(const char* value) { SetWebsiteRedirectLocation(value); return *this;} ///@} ///@{ /** *

Specifies the algorithm to use when encrypting the object (for example, * AES256).

This functionality is not supported for * directory buckets.

*/ inline const Aws::String& GetSSECustomerAlgorithm() const{ return m_sSECustomerAlgorithm; } inline bool SSECustomerAlgorithmHasBeenSet() const { return m_sSECustomerAlgorithmHasBeenSet; } inline void SetSSECustomerAlgorithm(const Aws::String& value) { m_sSECustomerAlgorithmHasBeenSet = true; m_sSECustomerAlgorithm = value; } inline void SetSSECustomerAlgorithm(Aws::String&& value) { m_sSECustomerAlgorithmHasBeenSet = true; m_sSECustomerAlgorithm = std::move(value); } inline void SetSSECustomerAlgorithm(const char* value) { m_sSECustomerAlgorithmHasBeenSet = true; m_sSECustomerAlgorithm.assign(value); } inline PutObjectRequest& WithSSECustomerAlgorithm(const Aws::String& value) { SetSSECustomerAlgorithm(value); return *this;} inline PutObjectRequest& WithSSECustomerAlgorithm(Aws::String&& value) { SetSSECustomerAlgorithm(std::move(value)); return *this;} inline PutObjectRequest& WithSSECustomerAlgorithm(const char* value) { SetSSECustomerAlgorithm(value); return *this;} ///@} ///@{ /** *

Specifies the customer-provided encryption key for Amazon S3 to use in * encrypting data. This value is used to store the object and then it is * discarded; Amazon S3 does not store the encryption key. The key must be * appropriate for use with the algorithm specified in the * x-amz-server-side-encryption-customer-algorithm header.

*

This functionality is not supported for directory buckets.

*/ inline const Aws::String& GetSSECustomerKey() const{ return m_sSECustomerKey; } inline bool SSECustomerKeyHasBeenSet() const { return m_sSECustomerKeyHasBeenSet; } inline void SetSSECustomerKey(const Aws::String& value) { m_sSECustomerKeyHasBeenSet = true; m_sSECustomerKey = value; } inline void SetSSECustomerKey(Aws::String&& value) { m_sSECustomerKeyHasBeenSet = true; m_sSECustomerKey = std::move(value); } inline void SetSSECustomerKey(const char* value) { m_sSECustomerKeyHasBeenSet = true; m_sSECustomerKey.assign(value); } inline PutObjectRequest& WithSSECustomerKey(const Aws::String& value) { SetSSECustomerKey(value); return *this;} inline PutObjectRequest& WithSSECustomerKey(Aws::String&& value) { SetSSECustomerKey(std::move(value)); return *this;} inline PutObjectRequest& WithSSECustomerKey(const char* value) { SetSSECustomerKey(value); return *this;} ///@} ///@{ /** *

Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. * Amazon S3 uses this header for a message integrity check to ensure that the * encryption key was transmitted without error.

This functionality * is not supported for directory buckets.

*/ inline const Aws::String& GetSSECustomerKeyMD5() const{ return m_sSECustomerKeyMD5; } inline bool SSECustomerKeyMD5HasBeenSet() const { return m_sSECustomerKeyMD5HasBeenSet; } inline void SetSSECustomerKeyMD5(const Aws::String& value) { m_sSECustomerKeyMD5HasBeenSet = true; m_sSECustomerKeyMD5 = value; } inline void SetSSECustomerKeyMD5(Aws::String&& value) { m_sSECustomerKeyMD5HasBeenSet = true; m_sSECustomerKeyMD5 = std::move(value); } inline void SetSSECustomerKeyMD5(const char* value) { m_sSECustomerKeyMD5HasBeenSet = true; m_sSECustomerKeyMD5.assign(value); } inline PutObjectRequest& WithSSECustomerKeyMD5(const Aws::String& value) { SetSSECustomerKeyMD5(value); return *this;} inline PutObjectRequest& WithSSECustomerKeyMD5(Aws::String&& value) { SetSSECustomerKeyMD5(std::move(value)); return *this;} inline PutObjectRequest& WithSSECustomerKeyMD5(const char* value) { SetSSECustomerKeyMD5(value); return *this;} ///@} ///@{ /** *

Specifies the KMS key ID (Key ID, Key ARN, or Key Alias) to use for object * encryption. If the KMS key doesn't exist in the same account that's issuing the * command, you must use the full Key ARN not the Key ID.

General * purpose buckets - If you specify x-amz-server-side-encryption * with aws:kms or aws:kms:dsse, this header specifies * the ID (Key ID, Key ARN, or Key Alias) of the KMS key to use. If you specify * x-amz-server-side-encryption:aws:kms or * x-amz-server-side-encryption:aws:kms:dsse, but do not provide * x-amz-server-side-encryption-aws-kms-key-id, Amazon S3 uses the * Amazon Web Services managed key (aws/s3) to protect the data.

*

Directory buckets - If you specify * x-amz-server-side-encryption with aws:kms, the * x-amz-server-side-encryption-aws-kms-key-id header is implicitly assigned * the ID of the KMS symmetric encryption customer managed key that's configured * for your directory bucket's default encryption setting. If you want to specify * the x-amz-server-side-encryption-aws-kms-key-id header explicitly, * you can only specify it with the ID (Key ID or Key ARN) of the KMS customer * managed key that's configured for your directory bucket's default encryption * setting. Otherwise, you get an HTTP 400 Bad Request error. Only use * the key ID or key ARN. The key alias format of the KMS key isn't supported. Your * SSE-KMS configuration can only support 1 customer * managed key per directory bucket for the lifetime of the bucket. The Amazon * Web Services managed key (aws/s3) isn't supported.

*/ inline const Aws::String& GetSSEKMSKeyId() const{ return m_sSEKMSKeyId; } inline bool SSEKMSKeyIdHasBeenSet() const { return m_sSEKMSKeyIdHasBeenSet; } inline void SetSSEKMSKeyId(const Aws::String& value) { m_sSEKMSKeyIdHasBeenSet = true; m_sSEKMSKeyId = value; } inline void SetSSEKMSKeyId(Aws::String&& value) { m_sSEKMSKeyIdHasBeenSet = true; m_sSEKMSKeyId = std::move(value); } inline void SetSSEKMSKeyId(const char* value) { m_sSEKMSKeyIdHasBeenSet = true; m_sSEKMSKeyId.assign(value); } inline PutObjectRequest& WithSSEKMSKeyId(const Aws::String& value) { SetSSEKMSKeyId(value); return *this;} inline PutObjectRequest& WithSSEKMSKeyId(Aws::String&& value) { SetSSEKMSKeyId(std::move(value)); return *this;} inline PutObjectRequest& WithSSEKMSKeyId(const char* value) { SetSSEKMSKeyId(value); return *this;} ///@} ///@{ /** *

Specifies the Amazon Web Services KMS Encryption Context as an additional * encryption context to use for object encryption. The value of this header is a * Base64-encoded string of a UTF-8 encoded JSON, which contains the encryption * context as key-value pairs. This value is stored as object metadata and * automatically gets passed on to Amazon Web Services KMS for future * GetObject operations on this object.

General purpose * buckets - This value must be explicitly added during CopyObject * operations if you want an additional encryption context for your object. For * more information, see Encryption * context in the Amazon S3 User Guide.

Directory buckets * - You can optionally provide an explicit encryption context value. The value * must match the default encryption context - the bucket Amazon Resource Name * (ARN). An additional encryption context value is not supported.

*/ inline const Aws::String& GetSSEKMSEncryptionContext() const{ return m_sSEKMSEncryptionContext; } inline bool SSEKMSEncryptionContextHasBeenSet() const { return m_sSEKMSEncryptionContextHasBeenSet; } inline void SetSSEKMSEncryptionContext(const Aws::String& value) { m_sSEKMSEncryptionContextHasBeenSet = true; m_sSEKMSEncryptionContext = value; } inline void SetSSEKMSEncryptionContext(Aws::String&& value) { m_sSEKMSEncryptionContextHasBeenSet = true; m_sSEKMSEncryptionContext = std::move(value); } inline void SetSSEKMSEncryptionContext(const char* value) { m_sSEKMSEncryptionContextHasBeenSet = true; m_sSEKMSEncryptionContext.assign(value); } inline PutObjectRequest& WithSSEKMSEncryptionContext(const Aws::String& value) { SetSSEKMSEncryptionContext(value); return *this;} inline PutObjectRequest& WithSSEKMSEncryptionContext(Aws::String&& value) { SetSSEKMSEncryptionContext(std::move(value)); return *this;} inline PutObjectRequest& WithSSEKMSEncryptionContext(const char* value) { SetSSEKMSEncryptionContext(value); return *this;} ///@} ///@{ /** *

Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption * with server-side encryption using Key Management Service (KMS) keys * (SSE-KMS).

General purpose buckets - Setting this header to * true causes Amazon S3 to use an S3 Bucket Key for object encryption * with SSE-KMS. Also, specifying this header with a PUT action doesn't affect * bucket-level settings for S3 Bucket Key.

Directory buckets - S3 * Bucket Keys are always enabled for GET and PUT * operations in a directory bucket and can’t be disabled. S3 Bucket Keys aren't * supported, when you copy SSE-KMS encrypted objects from general purpose buckets * to directory buckets, from directory buckets to general purpose buckets, or * between directory buckets, through CopyObject, * UploadPartCopy, * the * Copy operation in Batch Operations, or the * import jobs. In this case, Amazon S3 makes a call to KMS every time a copy * request is made for a KMS-encrypted object.

*/ inline bool GetBucketKeyEnabled() const{ return m_bucketKeyEnabled; } inline bool BucketKeyEnabledHasBeenSet() const { return m_bucketKeyEnabledHasBeenSet; } inline void SetBucketKeyEnabled(bool value) { m_bucketKeyEnabledHasBeenSet = true; m_bucketKeyEnabled = value; } inline PutObjectRequest& WithBucketKeyEnabled(bool value) { SetBucketKeyEnabled(value); return *this;} ///@} ///@{ inline const RequestPayer& GetRequestPayer() const{ return m_requestPayer; } inline bool RequestPayerHasBeenSet() const { return m_requestPayerHasBeenSet; } inline void SetRequestPayer(const RequestPayer& value) { m_requestPayerHasBeenSet = true; m_requestPayer = value; } inline void SetRequestPayer(RequestPayer&& value) { m_requestPayerHasBeenSet = true; m_requestPayer = std::move(value); } inline PutObjectRequest& WithRequestPayer(const RequestPayer& value) { SetRequestPayer(value); return *this;} inline PutObjectRequest& WithRequestPayer(RequestPayer&& value) { SetRequestPayer(std::move(value)); return *this;} ///@} ///@{ /** *

The tag-set for the object. The tag-set must be encoded as URL Query * parameters. (For example, "Key1=Value1")

This functionality is not * supported for directory buckets.

*/ inline const Aws::String& GetTagging() const{ return m_tagging; } inline bool TaggingHasBeenSet() const { return m_taggingHasBeenSet; } inline void SetTagging(const Aws::String& value) { m_taggingHasBeenSet = true; m_tagging = value; } inline void SetTagging(Aws::String&& value) { m_taggingHasBeenSet = true; m_tagging = std::move(value); } inline void SetTagging(const char* value) { m_taggingHasBeenSet = true; m_tagging.assign(value); } inline PutObjectRequest& WithTagging(const Aws::String& value) { SetTagging(value); return *this;} inline PutObjectRequest& WithTagging(Aws::String&& value) { SetTagging(std::move(value)); return *this;} inline PutObjectRequest& WithTagging(const char* value) { SetTagging(value); return *this;} ///@} ///@{ /** *

The Object Lock mode that you want to apply to this object.

*

This functionality is not supported for directory buckets.

*/ inline const ObjectLockMode& GetObjectLockMode() const{ return m_objectLockMode; } inline bool ObjectLockModeHasBeenSet() const { return m_objectLockModeHasBeenSet; } inline void SetObjectLockMode(const ObjectLockMode& value) { m_objectLockModeHasBeenSet = true; m_objectLockMode = value; } inline void SetObjectLockMode(ObjectLockMode&& value) { m_objectLockModeHasBeenSet = true; m_objectLockMode = std::move(value); } inline PutObjectRequest& WithObjectLockMode(const ObjectLockMode& value) { SetObjectLockMode(value); return *this;} inline PutObjectRequest& WithObjectLockMode(ObjectLockMode&& value) { SetObjectLockMode(std::move(value)); return *this;} ///@} ///@{ /** *

The date and time when you want this object's Object Lock to expire. Must be * formatted as a timestamp parameter.

This functionality is not * supported for directory buckets.

*/ inline const Aws::Utils::DateTime& GetObjectLockRetainUntilDate() const{ return m_objectLockRetainUntilDate; } inline bool ObjectLockRetainUntilDateHasBeenSet() const { return m_objectLockRetainUntilDateHasBeenSet; } inline void SetObjectLockRetainUntilDate(const Aws::Utils::DateTime& value) { m_objectLockRetainUntilDateHasBeenSet = true; m_objectLockRetainUntilDate = value; } inline void SetObjectLockRetainUntilDate(Aws::Utils::DateTime&& value) { m_objectLockRetainUntilDateHasBeenSet = true; m_objectLockRetainUntilDate = std::move(value); } inline PutObjectRequest& WithObjectLockRetainUntilDate(const Aws::Utils::DateTime& value) { SetObjectLockRetainUntilDate(value); return *this;} inline PutObjectRequest& WithObjectLockRetainUntilDate(Aws::Utils::DateTime&& value) { SetObjectLockRetainUntilDate(std::move(value)); return *this;} ///@} ///@{ /** *

Specifies whether a legal hold will be applied to this object. For more * information about S3 Object Lock, see Object * Lock in the Amazon S3 User Guide.

This functionality is * not supported for directory buckets.

*/ inline const ObjectLockLegalHoldStatus& GetObjectLockLegalHoldStatus() const{ return m_objectLockLegalHoldStatus; } inline bool ObjectLockLegalHoldStatusHasBeenSet() const { return m_objectLockLegalHoldStatusHasBeenSet; } inline void SetObjectLockLegalHoldStatus(const ObjectLockLegalHoldStatus& value) { m_objectLockLegalHoldStatusHasBeenSet = true; m_objectLockLegalHoldStatus = value; } inline void SetObjectLockLegalHoldStatus(ObjectLockLegalHoldStatus&& value) { m_objectLockLegalHoldStatusHasBeenSet = true; m_objectLockLegalHoldStatus = std::move(value); } inline PutObjectRequest& WithObjectLockLegalHoldStatus(const ObjectLockLegalHoldStatus& value) { SetObjectLockLegalHoldStatus(value); return *this;} inline PutObjectRequest& WithObjectLockLegalHoldStatus(ObjectLockLegalHoldStatus&& value) { SetObjectLockLegalHoldStatus(std::move(value)); return *this;} ///@} ///@{ /** *

The account ID of the expected bucket owner. If the account ID that you * provide does not match the actual owner of the bucket, the request fails with * the HTTP status code 403 Forbidden (access denied).

*/ inline const Aws::String& GetExpectedBucketOwner() const{ return m_expectedBucketOwner; } inline bool ExpectedBucketOwnerHasBeenSet() const { return m_expectedBucketOwnerHasBeenSet; } inline void SetExpectedBucketOwner(const Aws::String& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = value; } inline void SetExpectedBucketOwner(Aws::String&& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = std::move(value); } inline void SetExpectedBucketOwner(const char* value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner.assign(value); } inline PutObjectRequest& WithExpectedBucketOwner(const Aws::String& value) { SetExpectedBucketOwner(value); return *this;} inline PutObjectRequest& WithExpectedBucketOwner(Aws::String&& value) { SetExpectedBucketOwner(std::move(value)); return *this;} inline PutObjectRequest& WithExpectedBucketOwner(const char* value) { SetExpectedBucketOwner(value); return *this;} ///@} ///@{ inline const Aws::Map& GetCustomizedAccessLogTag() const{ return m_customizedAccessLogTag; } inline bool CustomizedAccessLogTagHasBeenSet() const { return m_customizedAccessLogTagHasBeenSet; } inline void SetCustomizedAccessLogTag(const Aws::Map& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag = value; } inline void SetCustomizedAccessLogTag(Aws::Map&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag = std::move(value); } inline PutObjectRequest& WithCustomizedAccessLogTag(const Aws::Map& value) { SetCustomizedAccessLogTag(value); return *this;} inline PutObjectRequest& WithCustomizedAccessLogTag(Aws::Map&& value) { SetCustomizedAccessLogTag(std::move(value)); return *this;} inline PutObjectRequest& AddCustomizedAccessLogTag(const Aws::String& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; } inline PutObjectRequest& AddCustomizedAccessLogTag(Aws::String&& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; } inline PutObjectRequest& AddCustomizedAccessLogTag(const Aws::String& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; } inline PutObjectRequest& AddCustomizedAccessLogTag(Aws::String&& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), std::move(value)); return *this; } inline PutObjectRequest& AddCustomizedAccessLogTag(const char* key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; } inline PutObjectRequest& AddCustomizedAccessLogTag(Aws::String&& key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; } inline PutObjectRequest& AddCustomizedAccessLogTag(const char* key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; } ///@} private: ObjectCannedACL m_aCL; bool m_aCLHasBeenSet = false; Aws::String m_bucket; bool m_bucketHasBeenSet = false; Aws::String m_cacheControl; bool m_cacheControlHasBeenSet = false; Aws::String m_contentDisposition; bool m_contentDispositionHasBeenSet = false; Aws::String m_contentEncoding; bool m_contentEncodingHasBeenSet = false; Aws::String m_contentLanguage; bool m_contentLanguageHasBeenSet = false; long long m_contentLength; bool m_contentLengthHasBeenSet = false; Aws::String m_contentMD5; bool m_contentMD5HasBeenSet = false; ChecksumAlgorithm m_checksumAlgorithm; bool m_checksumAlgorithmHasBeenSet = false; Aws::String m_checksumCRC32; bool m_checksumCRC32HasBeenSet = false; Aws::String m_checksumCRC32C; bool m_checksumCRC32CHasBeenSet = false; Aws::String m_checksumSHA1; bool m_checksumSHA1HasBeenSet = false; Aws::String m_checksumSHA256; bool m_checksumSHA256HasBeenSet = false; Aws::Utils::DateTime m_expires; bool m_expiresHasBeenSet = false; Aws::String m_ifNoneMatch; bool m_ifNoneMatchHasBeenSet = false; Aws::String m_grantFullControl; bool m_grantFullControlHasBeenSet = false; Aws::String m_grantRead; bool m_grantReadHasBeenSet = false; Aws::String m_grantReadACP; bool m_grantReadACPHasBeenSet = false; Aws::String m_grantWriteACP; bool m_grantWriteACPHasBeenSet = false; Aws::String m_key; bool m_keyHasBeenSet = false; Aws::Map m_metadata; bool m_metadataHasBeenSet = false; ServerSideEncryption m_serverSideEncryption; bool m_serverSideEncryptionHasBeenSet = false; StorageClass m_storageClass; bool m_storageClassHasBeenSet = false; Aws::String m_websiteRedirectLocation; bool m_websiteRedirectLocationHasBeenSet = false; Aws::String m_sSECustomerAlgorithm; bool m_sSECustomerAlgorithmHasBeenSet = false; Aws::String m_sSECustomerKey; bool m_sSECustomerKeyHasBeenSet = false; Aws::String m_sSECustomerKeyMD5; bool m_sSECustomerKeyMD5HasBeenSet = false; Aws::String m_sSEKMSKeyId; bool m_sSEKMSKeyIdHasBeenSet = false; Aws::String m_sSEKMSEncryptionContext; bool m_sSEKMSEncryptionContextHasBeenSet = false; bool m_bucketKeyEnabled; bool m_bucketKeyEnabledHasBeenSet = false; RequestPayer m_requestPayer; bool m_requestPayerHasBeenSet = false; Aws::String m_tagging; bool m_taggingHasBeenSet = false; ObjectLockMode m_objectLockMode; bool m_objectLockModeHasBeenSet = false; Aws::Utils::DateTime m_objectLockRetainUntilDate; bool m_objectLockRetainUntilDateHasBeenSet = false; ObjectLockLegalHoldStatus m_objectLockLegalHoldStatus; bool m_objectLockLegalHoldStatusHasBeenSet = false; Aws::String m_expectedBucketOwner; bool m_expectedBucketOwnerHasBeenSet = false; Aws::Map m_customizedAccessLogTag; bool m_customizedAccessLogTagHasBeenSet = false; }; } // namespace Model } // namespace S3 } // namespace Aws