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

The container element for an ownership control rule.

See Also:

* AWS * API Reference

*/ class AWS_S3_API OwnershipControlsRule { public: OwnershipControlsRule(); OwnershipControlsRule(const Aws::Utils::Xml::XmlNode& xmlNode); OwnershipControlsRule& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; inline const ObjectOwnership& GetObjectOwnership() const{ return m_objectOwnership; } inline bool ObjectOwnershipHasBeenSet() const { return m_objectOwnershipHasBeenSet; } inline void SetObjectOwnership(const ObjectOwnership& value) { m_objectOwnershipHasBeenSet = true; m_objectOwnership = value; } inline void SetObjectOwnership(ObjectOwnership&& value) { m_objectOwnershipHasBeenSet = true; m_objectOwnership = std::move(value); } inline OwnershipControlsRule& WithObjectOwnership(const ObjectOwnership& value) { SetObjectOwnership(value); return *this;} inline OwnershipControlsRule& WithObjectOwnership(ObjectOwnership&& value) { SetObjectOwnership(std::move(value)); return *this;} private: ObjectOwnership m_objectOwnership; bool m_objectOwnershipHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws