/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Configures the transfer acceleration state for an Amazon S3 bucket. For more
* information, see Amazon
* S3 Transfer Acceleration in the Amazon S3 User Guide.See
* Also:
AWS
* API Reference
Specifies the transfer acceleration status of the bucket.
*/ inline const BucketAccelerateStatus& GetStatus() const{ return m_status; } /** *Specifies the transfer acceleration status of the bucket.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *Specifies the transfer acceleration status of the bucket.
*/ inline void SetStatus(const BucketAccelerateStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *Specifies the transfer acceleration status of the bucket.
*/ inline void SetStatus(BucketAccelerateStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *Specifies the transfer acceleration status of the bucket.
*/ inline AccelerateConfiguration& WithStatus(const BucketAccelerateStatus& value) { SetStatus(value); return *this;} /** *Specifies the transfer acceleration status of the bucket.
*/ inline AccelerateConfiguration& WithStatus(BucketAccelerateStatus&& value) { SetStatus(std::move(value)); return *this;} private: BucketAccelerateStatus m_status; bool m_statusHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws