/** * 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 namespace Aws { namespace Http { class URI; } //namespace Http namespace S3 { namespace Model { /** */ class AWS_S3_API PutBucketAclRequest : public S3Request { public: PutBucketAclRequest(); // 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 "PutBucketAcl"; } Aws::String SerializePayload() const override; void AddQueryStringParameters(Aws::Http::URI& uri) const override; Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; inline bool ShouldComputeContentMd5() const override { return true; } /** *

The canned ACL to apply to the bucket.

*/ inline const BucketCannedACL& GetACL() const{ return m_aCL; } /** *

The canned ACL to apply to the bucket.

*/ inline bool ACLHasBeenSet() const { return m_aCLHasBeenSet; } /** *

The canned ACL to apply to the bucket.

*/ inline void SetACL(const BucketCannedACL& value) { m_aCLHasBeenSet = true; m_aCL = value; } /** *

The canned ACL to apply to the bucket.

*/ inline void SetACL(BucketCannedACL&& value) { m_aCLHasBeenSet = true; m_aCL = std::move(value); } /** *

The canned ACL to apply to the bucket.

*/ inline PutBucketAclRequest& WithACL(const BucketCannedACL& value) { SetACL(value); return *this;} /** *

The canned ACL to apply to the bucket.

*/ inline PutBucketAclRequest& WithACL(BucketCannedACL&& value) { SetACL(std::move(value)); return *this;} /** *

Contains the elements that set the ACL permissions for an object per * grantee.

*/ inline const AccessControlPolicy& GetAccessControlPolicy() const{ return m_accessControlPolicy; } /** *

Contains the elements that set the ACL permissions for an object per * grantee.

*/ inline bool AccessControlPolicyHasBeenSet() const { return m_accessControlPolicyHasBeenSet; } /** *

Contains the elements that set the ACL permissions for an object per * grantee.

*/ inline void SetAccessControlPolicy(const AccessControlPolicy& value) { m_accessControlPolicyHasBeenSet = true; m_accessControlPolicy = value; } /** *

Contains the elements that set the ACL permissions for an object per * grantee.

*/ inline void SetAccessControlPolicy(AccessControlPolicy&& value) { m_accessControlPolicyHasBeenSet = true; m_accessControlPolicy = std::move(value); } /** *

Contains the elements that set the ACL permissions for an object per * grantee.

*/ inline PutBucketAclRequest& WithAccessControlPolicy(const AccessControlPolicy& value) { SetAccessControlPolicy(value); return *this;} /** *

Contains the elements that set the ACL permissions for an object per * grantee.

*/ inline PutBucketAclRequest& WithAccessControlPolicy(AccessControlPolicy&& value) { SetAccessControlPolicy(std::move(value)); return *this;} /** *

The bucket to which to apply the ACL.

*/ inline const Aws::String& GetBucket() const{ return m_bucket; } /** *

The bucket to which to apply the ACL.

*/ inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; } /** *

The bucket to which to apply the ACL.

*/ inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; } /** *

The bucket to which to apply the ACL.

*/ inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); } /** *

The bucket to which to apply the ACL.

*/ inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); } /** *

The bucket to which to apply the ACL.

*/ inline PutBucketAclRequest& WithBucket(const Aws::String& value) { SetBucket(value); return *this;} /** *

The bucket to which to apply the ACL.

*/ inline PutBucketAclRequest& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;} /** *

The bucket to which to apply the ACL.

*/ inline PutBucketAclRequest& WithBucket(const char* value) { SetBucket(value); return *this;} /** *

The base64-encoded 128-bit MD5 digest of the data. This header must be used * as a message integrity check to verify that the request body was not corrupted * in transit. For more information, go to RFC 1864.

For requests * made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web * Services SDKs, this field is calculated automatically.

*/ inline const Aws::String& GetContentMD5() const{ return m_contentMD5; } /** *

The base64-encoded 128-bit MD5 digest of the data. This header must be used * as a message integrity check to verify that the request body was not corrupted * in transit. For more information, go to RFC 1864.

For requests * made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web * Services SDKs, this field is calculated automatically.

*/ inline bool ContentMD5HasBeenSet() const { return m_contentMD5HasBeenSet; } /** *

The base64-encoded 128-bit MD5 digest of the data. This header must be used * as a message integrity check to verify that the request body was not corrupted * in transit. For more information, go to RFC 1864.

For requests * made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web * Services SDKs, this field is calculated automatically.

*/ inline void SetContentMD5(const Aws::String& value) { m_contentMD5HasBeenSet = true; m_contentMD5 = value; } /** *

The base64-encoded 128-bit MD5 digest of the data. This header must be used * as a message integrity check to verify that the request body was not corrupted * in transit. For more information, go to RFC 1864.

For requests * made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web * Services SDKs, this field is calculated automatically.

*/ inline void SetContentMD5(Aws::String&& value) { m_contentMD5HasBeenSet = true; m_contentMD5 = std::move(value); } /** *

The base64-encoded 128-bit MD5 digest of the data. This header must be used * as a message integrity check to verify that the request body was not corrupted * in transit. For more information, go to RFC 1864.

For requests * made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web * Services SDKs, this field is calculated automatically.

*/ inline void SetContentMD5(const char* value) { m_contentMD5HasBeenSet = true; m_contentMD5.assign(value); } /** *

The base64-encoded 128-bit MD5 digest of the data. This header must be used * as a message integrity check to verify that the request body was not corrupted * in transit. For more information, go to RFC 1864.

For requests * made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web * Services SDKs, this field is calculated automatically.

*/ inline PutBucketAclRequest& WithContentMD5(const Aws::String& value) { SetContentMD5(value); return *this;} /** *

The base64-encoded 128-bit MD5 digest of the data. This header must be used * as a message integrity check to verify that the request body was not corrupted * in transit. For more information, go to RFC 1864.

For requests * made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web * Services SDKs, this field is calculated automatically.

*/ inline PutBucketAclRequest& WithContentMD5(Aws::String&& value) { SetContentMD5(std::move(value)); return *this;} /** *

The base64-encoded 128-bit MD5 digest of the data. This header must be used * as a message integrity check to verify that the request body was not corrupted * in transit. For more information, go to RFC 1864.

For requests * made using the Amazon Web Services Command Line Interface (CLI) or Amazon Web * Services SDKs, this field is calculated automatically.

*/ inline PutBucketAclRequest& WithContentMD5(const char* value) { SetContentMD5(value); return *this;} /** *

Allows grantee the read, write, read ACP, and write ACP permissions on the * bucket.

*/ inline const Aws::String& GetGrantFullControl() const{ return m_grantFullControl; } /** *

Allows grantee the read, write, read ACP, and write ACP permissions on the * bucket.

*/ inline bool GrantFullControlHasBeenSet() const { return m_grantFullControlHasBeenSet; } /** *

Allows grantee the read, write, read ACP, and write ACP permissions on the * bucket.

*/ inline void SetGrantFullControl(const Aws::String& value) { m_grantFullControlHasBeenSet = true; m_grantFullControl = value; } /** *

Allows grantee the read, write, read ACP, and write ACP permissions on the * bucket.

*/ inline void SetGrantFullControl(Aws::String&& value) { m_grantFullControlHasBeenSet = true; m_grantFullControl = std::move(value); } /** *

Allows grantee the read, write, read ACP, and write ACP permissions on the * bucket.

*/ inline void SetGrantFullControl(const char* value) { m_grantFullControlHasBeenSet = true; m_grantFullControl.assign(value); } /** *

Allows grantee the read, write, read ACP, and write ACP permissions on the * bucket.

*/ inline PutBucketAclRequest& WithGrantFullControl(const Aws::String& value) { SetGrantFullControl(value); return *this;} /** *

Allows grantee the read, write, read ACP, and write ACP permissions on the * bucket.

*/ inline PutBucketAclRequest& WithGrantFullControl(Aws::String&& value) { SetGrantFullControl(std::move(value)); return *this;} /** *

Allows grantee the read, write, read ACP, and write ACP permissions on the * bucket.

*/ inline PutBucketAclRequest& WithGrantFullControl(const char* value) { SetGrantFullControl(value); return *this;} /** *

Allows grantee to list the objects in the bucket.

*/ inline const Aws::String& GetGrantRead() const{ return m_grantRead; } /** *

Allows grantee to list the objects in the bucket.

*/ inline bool GrantReadHasBeenSet() const { return m_grantReadHasBeenSet; } /** *

Allows grantee to list the objects in the bucket.

*/ inline void SetGrantRead(const Aws::String& value) { m_grantReadHasBeenSet = true; m_grantRead = value; } /** *

Allows grantee to list the objects in the bucket.

*/ inline void SetGrantRead(Aws::String&& value) { m_grantReadHasBeenSet = true; m_grantRead = std::move(value); } /** *

Allows grantee to list the objects in the bucket.

*/ inline void SetGrantRead(const char* value) { m_grantReadHasBeenSet = true; m_grantRead.assign(value); } /** *

Allows grantee to list the objects in the bucket.

*/ inline PutBucketAclRequest& WithGrantRead(const Aws::String& value) { SetGrantRead(value); return *this;} /** *

Allows grantee to list the objects in the bucket.

*/ inline PutBucketAclRequest& WithGrantRead(Aws::String&& value) { SetGrantRead(std::move(value)); return *this;} /** *

Allows grantee to list the objects in the bucket.

*/ inline PutBucketAclRequest& WithGrantRead(const char* value) { SetGrantRead(value); return *this;} /** *

Allows grantee to read the bucket ACL.

*/ inline const Aws::String& GetGrantReadACP() const{ return m_grantReadACP; } /** *

Allows grantee to read the bucket ACL.

*/ inline bool GrantReadACPHasBeenSet() const { return m_grantReadACPHasBeenSet; } /** *

Allows grantee to read the bucket ACL.

*/ inline void SetGrantReadACP(const Aws::String& value) { m_grantReadACPHasBeenSet = true; m_grantReadACP = value; } /** *

Allows grantee to read the bucket ACL.

*/ inline void SetGrantReadACP(Aws::String&& value) { m_grantReadACPHasBeenSet = true; m_grantReadACP = std::move(value); } /** *

Allows grantee to read the bucket ACL.

*/ inline void SetGrantReadACP(const char* value) { m_grantReadACPHasBeenSet = true; m_grantReadACP.assign(value); } /** *

Allows grantee to read the bucket ACL.

*/ inline PutBucketAclRequest& WithGrantReadACP(const Aws::String& value) { SetGrantReadACP(value); return *this;} /** *

Allows grantee to read the bucket ACL.

*/ inline PutBucketAclRequest& WithGrantReadACP(Aws::String&& value) { SetGrantReadACP(std::move(value)); return *this;} /** *

Allows grantee to read the bucket ACL.

*/ inline PutBucketAclRequest& WithGrantReadACP(const char* value) { SetGrantReadACP(value); return *this;} /** *

Allows grantee to create new objects in the bucket.

For the bucket and * object owners of existing objects, also allows deletions and overwrites of those * objects.

*/ inline const Aws::String& GetGrantWrite() const{ return m_grantWrite; } /** *

Allows grantee to create new objects in the bucket.

For the bucket and * object owners of existing objects, also allows deletions and overwrites of those * objects.

*/ inline bool GrantWriteHasBeenSet() const { return m_grantWriteHasBeenSet; } /** *

Allows grantee to create new objects in the bucket.

For the bucket and * object owners of existing objects, also allows deletions and overwrites of those * objects.

*/ inline void SetGrantWrite(const Aws::String& value) { m_grantWriteHasBeenSet = true; m_grantWrite = value; } /** *

Allows grantee to create new objects in the bucket.

For the bucket and * object owners of existing objects, also allows deletions and overwrites of those * objects.

*/ inline void SetGrantWrite(Aws::String&& value) { m_grantWriteHasBeenSet = true; m_grantWrite = std::move(value); } /** *

Allows grantee to create new objects in the bucket.

For the bucket and * object owners of existing objects, also allows deletions and overwrites of those * objects.

*/ inline void SetGrantWrite(const char* value) { m_grantWriteHasBeenSet = true; m_grantWrite.assign(value); } /** *

Allows grantee to create new objects in the bucket.

For the bucket and * object owners of existing objects, also allows deletions and overwrites of those * objects.

*/ inline PutBucketAclRequest& WithGrantWrite(const Aws::String& value) { SetGrantWrite(value); return *this;} /** *

Allows grantee to create new objects in the bucket.

For the bucket and * object owners of existing objects, also allows deletions and overwrites of those * objects.

*/ inline PutBucketAclRequest& WithGrantWrite(Aws::String&& value) { SetGrantWrite(std::move(value)); return *this;} /** *

Allows grantee to create new objects in the bucket.

For the bucket and * object owners of existing objects, also allows deletions and overwrites of those * objects.

*/ inline PutBucketAclRequest& WithGrantWrite(const char* value) { SetGrantWrite(value); return *this;} /** *

Allows grantee to write the ACL for the applicable bucket.

*/ inline const Aws::String& GetGrantWriteACP() const{ return m_grantWriteACP; } /** *

Allows grantee to write the ACL for the applicable bucket.

*/ inline bool GrantWriteACPHasBeenSet() const { return m_grantWriteACPHasBeenSet; } /** *

Allows grantee to write the ACL for the applicable bucket.

*/ inline void SetGrantWriteACP(const Aws::String& value) { m_grantWriteACPHasBeenSet = true; m_grantWriteACP = value; } /** *

Allows grantee to write the ACL for the applicable bucket.

*/ inline void SetGrantWriteACP(Aws::String&& value) { m_grantWriteACPHasBeenSet = true; m_grantWriteACP = std::move(value); } /** *

Allows grantee to write the ACL for the applicable bucket.

*/ inline void SetGrantWriteACP(const char* value) { m_grantWriteACPHasBeenSet = true; m_grantWriteACP.assign(value); } /** *

Allows grantee to write the ACL for the applicable bucket.

*/ inline PutBucketAclRequest& WithGrantWriteACP(const Aws::String& value) { SetGrantWriteACP(value); return *this;} /** *

Allows grantee to write the ACL for the applicable bucket.

*/ inline PutBucketAclRequest& WithGrantWriteACP(Aws::String&& value) { SetGrantWriteACP(std::move(value)); return *this;} /** *

Allows grantee to write the ACL for the applicable bucket.

*/ inline PutBucketAclRequest& WithGrantWriteACP(const char* value) { SetGrantWriteACP(value); return *this;} /** *

The account ID of the expected bucket owner. If the bucket is owned by a * different account, the request will fail with an HTTP 403 (Access * Denied) error.

*/ inline const Aws::String& GetExpectedBucketOwner() const{ return m_expectedBucketOwner; } /** *

The account ID of the expected bucket owner. If the bucket is owned by a * different account, the request will fail with an HTTP 403 (Access * Denied) error.

*/ inline bool ExpectedBucketOwnerHasBeenSet() const { return m_expectedBucketOwnerHasBeenSet; } /** *

The account ID of the expected bucket owner. If the bucket is owned by a * different account, the request will fail with an HTTP 403 (Access * Denied) error.

*/ inline void SetExpectedBucketOwner(const Aws::String& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = value; } /** *

The account ID of the expected bucket owner. If the bucket is owned by a * different account, the request will fail with an HTTP 403 (Access * Denied) error.

*/ inline void SetExpectedBucketOwner(Aws::String&& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = std::move(value); } /** *

The account ID of the expected bucket owner. If the bucket is owned by a * different account, the request will fail with an HTTP 403 (Access * Denied) error.

*/ inline void SetExpectedBucketOwner(const char* value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner.assign(value); } /** *

The account ID of the expected bucket owner. If the bucket is owned by a * different account, the request will fail with an HTTP 403 (Access * Denied) error.

*/ inline PutBucketAclRequest& WithExpectedBucketOwner(const Aws::String& value) { SetExpectedBucketOwner(value); return *this;} /** *

The account ID of the expected bucket owner. If the bucket is owned by a * different account, the request will fail with an HTTP 403 (Access * Denied) error.

*/ inline PutBucketAclRequest& WithExpectedBucketOwner(Aws::String&& value) { SetExpectedBucketOwner(std::move(value)); return *this;} /** *

The account ID of the expected bucket owner. If the bucket is owned by a * different account, the request will fail with an HTTP 403 (Access * Denied) error.

*/ inline PutBucketAclRequest& 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 PutBucketAclRequest& WithCustomizedAccessLogTag(const Aws::Map& value) { SetCustomizedAccessLogTag(value); return *this;} inline PutBucketAclRequest& WithCustomizedAccessLogTag(Aws::Map&& value) { SetCustomizedAccessLogTag(std::move(value)); return *this;} inline PutBucketAclRequest& AddCustomizedAccessLogTag(const Aws::String& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; } inline PutBucketAclRequest& AddCustomizedAccessLogTag(Aws::String&& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; } inline PutBucketAclRequest& AddCustomizedAccessLogTag(const Aws::String& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; } inline PutBucketAclRequest& AddCustomizedAccessLogTag(Aws::String&& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), std::move(value)); return *this; } inline PutBucketAclRequest& AddCustomizedAccessLogTag(const char* key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; } inline PutBucketAclRequest& AddCustomizedAccessLogTag(Aws::String&& key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; } inline PutBucketAclRequest& AddCustomizedAccessLogTag(const char* key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; } private: BucketCannedACL m_aCL; bool m_aCLHasBeenSet; AccessControlPolicy m_accessControlPolicy; bool m_accessControlPolicyHasBeenSet; Aws::String m_bucket; bool m_bucketHasBeenSet; Aws::String m_contentMD5; bool m_contentMD5HasBeenSet; Aws::String m_grantFullControl; bool m_grantFullControlHasBeenSet; Aws::String m_grantRead; bool m_grantReadHasBeenSet; Aws::String m_grantReadACP; bool m_grantReadACPHasBeenSet; Aws::String m_grantWrite; bool m_grantWriteHasBeenSet; Aws::String m_grantWriteACP; bool m_grantWriteACPHasBeenSet; Aws::String m_expectedBucketOwner; bool m_expectedBucketOwnerHasBeenSet; Aws::Map m_customizedAccessLogTag; bool m_customizedAccessLogTagHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws