/**
* 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; } /** *The Stats event details.
*/ inline bool DetailsHasBeenSet() const { return m_detailsHasBeenSet; } /** *The Stats event details.
*/ inline void SetDetails(const Stats& value) { m_detailsHasBeenSet = true; m_details = value; } /** *The Stats event details.
*/ inline void SetDetails(Stats&& value) { m_detailsHasBeenSet = true; m_details = std::move(value); } /** *The Stats event details.
*/ inline StatsEvent& WithDetails(const Stats& value) { SetDetails(value); return *this;} /** *The Stats event details.
*/ inline StatsEvent& WithDetails(Stats&& value) { SetDetails(std::move(value)); return *this;} private: Stats m_details; bool m_detailsHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws