/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include This data type contains information about the progress event of an
* operation.See Also:
AWS
* API Reference
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