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

This data type contains information about the progress event of an * operation.

See Also:

AWS * API Reference

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

The Progress event details.

*/ inline const Progress& GetDetails() const{ return m_details; } /** *

The Progress event details.

*/ inline bool DetailsHasBeenSet() const { return m_detailsHasBeenSet; } /** *

The Progress event details.

*/ inline void SetDetails(const Progress& value) { m_detailsHasBeenSet = true; m_details = value; } /** *

The Progress event details.

*/ inline void SetDetails(Progress&& value) { m_detailsHasBeenSet = true; m_details = std::move(value); } /** *

The Progress event details.

*/ inline ProgressEvent& WithDetails(const Progress& value) { SetDetails(value); return *this;} /** *

The Progress event details.

*/ inline ProgressEvent& WithDetails(Progress&& value) { SetDetails(std::move(value)); return *this;} private: Progress m_details; bool m_detailsHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws