/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the versioning state of an Amazon S3 bucket. For more information,
* see PUT
* Bucket versioning in the Amazon S3 API Reference.See
* Also:
AWS
* API Reference
Specifies whether MFA delete is enabled in the bucket versioning * configuration. This element is only returned if the bucket has been configured * with MFA delete. If the bucket has never been so configured, this element is not * returned.
*/ inline const MFADelete& GetMFADelete() const{ return m_mFADelete; } /** *Specifies whether MFA delete is enabled in the bucket versioning * configuration. This element is only returned if the bucket has been configured * with MFA delete. If the bucket has never been so configured, this element is not * returned.
*/ inline bool MFADeleteHasBeenSet() const { return m_mFADeleteHasBeenSet; } /** *Specifies whether MFA delete is enabled in the bucket versioning * configuration. This element is only returned if the bucket has been configured * with MFA delete. If the bucket has never been so configured, this element is not * returned.
*/ inline void SetMFADelete(const MFADelete& value) { m_mFADeleteHasBeenSet = true; m_mFADelete = value; } /** *Specifies whether MFA delete is enabled in the bucket versioning * configuration. This element is only returned if the bucket has been configured * with MFA delete. If the bucket has never been so configured, this element is not * returned.
*/ inline void SetMFADelete(MFADelete&& value) { m_mFADeleteHasBeenSet = true; m_mFADelete = std::move(value); } /** *Specifies whether MFA delete is enabled in the bucket versioning * configuration. This element is only returned if the bucket has been configured * with MFA delete. If the bucket has never been so configured, this element is not * returned.
*/ inline VersioningConfiguration& WithMFADelete(const MFADelete& value) { SetMFADelete(value); return *this;} /** *Specifies whether MFA delete is enabled in the bucket versioning * configuration. This element is only returned if the bucket has been configured * with MFA delete. If the bucket has never been so configured, this element is not * returned.
*/ inline VersioningConfiguration& WithMFADelete(MFADelete&& value) { SetMFADelete(std::move(value)); return *this;} /** *The versioning state of the bucket.
*/ inline const BucketVersioningStatus& GetStatus() const{ return m_status; } /** *The versioning state of the bucket.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The versioning state of the bucket.
*/ inline void SetStatus(const BucketVersioningStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *The versioning state of the bucket.
*/ inline void SetStatus(BucketVersioningStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The versioning state of the bucket.
*/ inline VersioningConfiguration& WithStatus(const BucketVersioningStatus& value) { SetStatus(value); return *this;} /** *The versioning state of the bucket.
*/ inline VersioningConfiguration& WithStatus(BucketVersioningStatus&& value) { SetStatus(std::move(value)); return *this;} private: MFADelete m_mFADelete; bool m_mFADeleteHasBeenSet; BucketVersioningStatus m_status; bool m_statusHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws