/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace S3Control { namespace Model { /** *

A container that specifies S3 Replication Time Control (S3 RTC) related * information, including whether S3 RTC is enabled and the time when all objects * and operations on objects must be replicated.

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

See Also:

* AWS * API Reference

*/ class ReplicationTime { public: AWS_S3CONTROL_API ReplicationTime(); AWS_S3CONTROL_API ReplicationTime(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3CONTROL_API ReplicationTime& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3CONTROL_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

Specifies whether S3 Replication Time Control (S3 RTC) is enabled.

*/ inline const ReplicationTimeStatus& GetStatus() const{ return m_status; } /** *

Specifies whether S3 Replication Time Control (S3 RTC) is enabled.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

Specifies whether S3 Replication Time Control (S3 RTC) is enabled.

*/ inline void SetStatus(const ReplicationTimeStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

Specifies whether S3 Replication Time Control (S3 RTC) is enabled.

*/ inline void SetStatus(ReplicationTimeStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

Specifies whether S3 Replication Time Control (S3 RTC) is enabled.

*/ inline ReplicationTime& WithStatus(const ReplicationTimeStatus& value) { SetStatus(value); return *this;} /** *

Specifies whether S3 Replication Time Control (S3 RTC) is enabled.

*/ inline ReplicationTime& WithStatus(ReplicationTimeStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

A container that specifies the time by which replication should be complete * for all objects and operations on objects.

*/ inline const ReplicationTimeValue& GetTime() const{ return m_time; } /** *

A container that specifies the time by which replication should be complete * for all objects and operations on objects.

*/ inline bool TimeHasBeenSet() const { return m_timeHasBeenSet; } /** *

A container that specifies the time by which replication should be complete * for all objects and operations on objects.

*/ inline void SetTime(const ReplicationTimeValue& value) { m_timeHasBeenSet = true; m_time = value; } /** *

A container that specifies the time by which replication should be complete * for all objects and operations on objects.

*/ inline void SetTime(ReplicationTimeValue&& value) { m_timeHasBeenSet = true; m_time = std::move(value); } /** *

A container that specifies the time by which replication should be complete * for all objects and operations on objects.

*/ inline ReplicationTime& WithTime(const ReplicationTimeValue& value) { SetTime(value); return *this;} /** *

A container that specifies the time by which replication should be complete * for all objects and operations on objects.

*/ inline ReplicationTime& WithTime(ReplicationTimeValue&& value) { SetTime(std::move(value)); return *this;} private: ReplicationTimeStatus m_status; bool m_statusHasBeenSet = false; ReplicationTimeValue m_time; bool m_timeHasBeenSet = false; }; } // namespace Model } // namespace S3Control } // namespace Aws