/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace S3Control { namespace Model { /** */ class CreateBucketRequest : public S3ControlRequest { public: AWS_S3CONTROL_API CreateBucketRequest(); // 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 "CreateBucket"; } AWS_S3CONTROL_API Aws::String SerializePayload() const override; AWS_S3CONTROL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; AWS_S3CONTROL_API inline bool ShouldComputeContentMd5() const override { return true; } /** * Helper function to collect parameters (configurable and static hardcoded) required for endpoint computation. */ AWS_S3CONTROL_API EndpointParameters GetEndpointContextParams() const override; /** *

The canned ACL to apply to the bucket.

This is not supported by * Amazon S3 on Outposts buckets.

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

The canned ACL to apply to the bucket.

This is not supported by * Amazon S3 on Outposts buckets.

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

The canned ACL to apply to the bucket.

This is not supported by * Amazon S3 on Outposts buckets.

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

The canned ACL to apply to the bucket.

This is not supported by * Amazon S3 on Outposts buckets.

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

The canned ACL to apply to the bucket.

This is not supported by * Amazon S3 on Outposts buckets.

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

The canned ACL to apply to the bucket.

This is not supported by * Amazon S3 on Outposts buckets.

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

The name of the bucket.

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

The name of the bucket.

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

The name of the bucket.

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

The name of the bucket.

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

The name of the bucket.

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

The name of the bucket.

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

The name of the bucket.

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

The name of the bucket.

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

The configuration information for the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

*/ inline const CreateBucketConfiguration& GetCreateBucketConfiguration() const{ return m_createBucketConfiguration; } /** *

The configuration information for the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

*/ inline bool CreateBucketConfigurationHasBeenSet() const { return m_createBucketConfigurationHasBeenSet; } /** *

The configuration information for the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

*/ inline void SetCreateBucketConfiguration(const CreateBucketConfiguration& value) { m_createBucketConfigurationHasBeenSet = true; m_createBucketConfiguration = value; } /** *

The configuration information for the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

*/ inline void SetCreateBucketConfiguration(CreateBucketConfiguration&& value) { m_createBucketConfigurationHasBeenSet = true; m_createBucketConfiguration = std::move(value); } /** *

The configuration information for the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

*/ inline CreateBucketRequest& WithCreateBucketConfiguration(const CreateBucketConfiguration& value) { SetCreateBucketConfiguration(value); return *this;} /** *

The configuration information for the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

*/ inline CreateBucketRequest& WithCreateBucketConfiguration(CreateBucketConfiguration&& value) { SetCreateBucketConfiguration(std::move(value)); return *this;} /** *

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

This is not supported by Amazon S3 on Outposts * buckets.

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

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

This is not supported by Amazon S3 on Outposts * buckets.

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

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

This is not supported by Amazon S3 on Outposts * buckets.

*/ 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.

This is not supported by Amazon S3 on Outposts * buckets.

*/ 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.

This is not supported by Amazon S3 on Outposts * buckets.

*/ 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.

This is not supported by Amazon S3 on Outposts * buckets.

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

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

This is not supported by Amazon S3 on Outposts * buckets.

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

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

This is not supported by Amazon S3 on Outposts * buckets.

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

Allows grantee to list the objects in the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

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

Allows grantee to list the objects in the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

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

Allows grantee to list the objects in the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

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

Allows grantee to list the objects in the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

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

Allows grantee to list the objects in the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

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

Allows grantee to list the objects in the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

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

Allows grantee to list the objects in the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

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

Allows grantee to list the objects in the bucket.

This is not * supported by Amazon S3 on Outposts buckets.

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

Allows grantee to read the bucket ACL.

This is not supported by * Amazon S3 on Outposts buckets.

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

Allows grantee to read the bucket ACL.

This is not supported by * Amazon S3 on Outposts buckets.

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

Allows grantee to read the bucket ACL.

This is not supported by * Amazon S3 on Outposts buckets.

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

Allows grantee to read the bucket ACL.

This is not supported by * Amazon S3 on Outposts buckets.

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

Allows grantee to read the bucket ACL.

This is not supported by * Amazon S3 on Outposts buckets.

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

Allows grantee to read the bucket ACL.

This is not supported by * Amazon S3 on Outposts buckets.

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

Allows grantee to read the bucket ACL.

This is not supported by * Amazon S3 on Outposts buckets.

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

Allows grantee to read the bucket ACL.

This is not supported by * Amazon S3 on Outposts buckets.

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

Allows grantee to create, overwrite, and delete any object in the bucket.

*

This is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to create, overwrite, and delete any object in the bucket.

*

This is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to create, overwrite, and delete any object in the bucket.

*

This is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to create, overwrite, and delete any object in the bucket.

*

This is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to create, overwrite, and delete any object in the bucket.

*

This is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to create, overwrite, and delete any object in the bucket.

*

This is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to create, overwrite, and delete any object in the bucket.

*

This is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to create, overwrite, and delete any object in the bucket.

*

This is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to write the ACL for the applicable bucket.

This * is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to write the ACL for the applicable bucket.

This * is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to write the ACL for the applicable bucket.

This * is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to write the ACL for the applicable bucket.

This * is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to write the ACL for the applicable bucket.

This * is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to write the ACL for the applicable bucket.

This * is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to write the ACL for the applicable bucket.

This * is not supported by Amazon S3 on Outposts buckets.

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

Allows grantee to write the ACL for the applicable bucket.

This * is not supported by Amazon S3 on Outposts buckets.

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

Specifies whether you want S3 Object Lock to be enabled for the new * bucket.

This is not supported by Amazon S3 on Outposts * buckets.

*/ inline bool GetObjectLockEnabledForBucket() const{ return m_objectLockEnabledForBucket; } /** *

Specifies whether you want S3 Object Lock to be enabled for the new * bucket.

This is not supported by Amazon S3 on Outposts * buckets.

*/ inline bool ObjectLockEnabledForBucketHasBeenSet() const { return m_objectLockEnabledForBucketHasBeenSet; } /** *

Specifies whether you want S3 Object Lock to be enabled for the new * bucket.

This is not supported by Amazon S3 on Outposts * buckets.

*/ inline void SetObjectLockEnabledForBucket(bool value) { m_objectLockEnabledForBucketHasBeenSet = true; m_objectLockEnabledForBucket = value; } /** *

Specifies whether you want S3 Object Lock to be enabled for the new * bucket.

This is not supported by Amazon S3 on Outposts * buckets.

*/ inline CreateBucketRequest& WithObjectLockEnabledForBucket(bool value) { SetObjectLockEnabledForBucket(value); return *this;} /** *

The ID of the Outposts where the bucket is being created.

This * ID is required by Amazon S3 on Outposts buckets.

*/ inline const Aws::String& GetOutpostId() const{ return m_outpostId; } /** *

The ID of the Outposts where the bucket is being created.

This * ID is required by Amazon S3 on Outposts buckets.

*/ inline bool OutpostIdHasBeenSet() const { return m_outpostIdHasBeenSet; } /** *

The ID of the Outposts where the bucket is being created.

This * ID is required by Amazon S3 on Outposts buckets.

*/ inline void SetOutpostId(const Aws::String& value) { m_outpostIdHasBeenSet = true; m_outpostId = value; } /** *

The ID of the Outposts where the bucket is being created.

This * ID is required by Amazon S3 on Outposts buckets.

*/ inline void SetOutpostId(Aws::String&& value) { m_outpostIdHasBeenSet = true; m_outpostId = std::move(value); } /** *

The ID of the Outposts where the bucket is being created.

This * ID is required by Amazon S3 on Outposts buckets.

*/ inline void SetOutpostId(const char* value) { m_outpostIdHasBeenSet = true; m_outpostId.assign(value); } /** *

The ID of the Outposts where the bucket is being created.

This * ID is required by Amazon S3 on Outposts buckets.

*/ inline CreateBucketRequest& WithOutpostId(const Aws::String& value) { SetOutpostId(value); return *this;} /** *

The ID of the Outposts where the bucket is being created.

This * ID is required by Amazon S3 on Outposts buckets.

*/ inline CreateBucketRequest& WithOutpostId(Aws::String&& value) { SetOutpostId(std::move(value)); return *this;} /** *

The ID of the Outposts where the bucket is being created.

This * ID is required by Amazon S3 on Outposts buckets.

*/ inline CreateBucketRequest& WithOutpostId(const char* value) { SetOutpostId(value); return *this;} private: BucketCannedACL m_aCL; bool m_aCLHasBeenSet = false; Aws::String m_bucket; bool m_bucketHasBeenSet = false; CreateBucketConfiguration m_createBucketConfiguration; bool m_createBucketConfigurationHasBeenSet = 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_grantWrite; bool m_grantWriteHasBeenSet = false; Aws::String m_grantWriteACP; bool m_grantWriteACPHasBeenSet = false; bool m_objectLockEnabledForBucket; bool m_objectLockEnabledForBucketHasBeenSet = false; Aws::String m_outpostId; bool m_outpostIdHasBeenSet = false; }; } // namespace Model } // namespace S3Control } // namespace Aws