/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about a timestamp.See Also:
AWS
* API Reference
The value of the timestamp, in the Unix epoch format.
*/ inline long long GetTimeInMillis() const{ return m_timeInMillis; } /** *The value of the timestamp, in the Unix epoch format.
*/ inline bool TimeInMillisHasBeenSet() const { return m_timeInMillisHasBeenSet; } /** *The value of the timestamp, in the Unix epoch format.
*/ inline void SetTimeInMillis(long long value) { m_timeInMillisHasBeenSet = true; m_timeInMillis = value; } /** *The value of the timestamp, in the Unix epoch format.
*/ inline TimestampValue& WithTimeInMillis(long long value) { SetTimeInMillis(value); return *this;} private: long long m_timeInMillis; bool m_timeInMillisHasBeenSet = false; }; } // namespace Model } // namespace IoTEventsData } // namespace Aws