/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for the Stats Event.See Also:
AWS API
* Reference
The Stats event details.
*/ inline const Stats& GetDetails() const{ return m_details; } inline bool DetailsHasBeenSet() const { return m_detailsHasBeenSet; } inline void SetDetails(const Stats& value) { m_detailsHasBeenSet = true; m_details = value; } inline void SetDetails(Stats&& value) { m_detailsHasBeenSet = true; m_details = std::move(value); } inline StatsEvent& WithDetails(const Stats& value) { SetDetails(value); return *this;} inline StatsEvent& WithDetails(Stats&& value) { SetDetails(std::move(value)); return *this;} ///@} private: Stats m_details; bool m_detailsHasBeenSet = false; }; } // namespace Model } // namespace S3 } // namespace Aws