Public Member Functions |
| | DateTime () |
| |
| | DateTime (const std::chrono::system_clock::time_point &timepointToAssign) |
| |
| | DateTime (int64_t millisSinceEpoch) |
| |
| | DateTime (double epoch_millis) |
| |
| | DateTime (const Aws::String ×tamp, DateFormat format) |
| |
| | DateTime (const char *timestamp, DateFormat format) |
| |
| bool | operator== (const DateTime &other) const |
| |
| bool | operator< (const DateTime &other) const |
| |
| bool | operator> (const DateTime &other) const |
| |
| bool | operator!= (const DateTime &other) const |
| |
| bool | operator<= (const DateTime &other) const |
| |
| bool | operator>= (const DateTime &other) const |
| |
| DateTime & | operator= (double secondsSinceEpoch) |
| |
| DateTime & | operator= (int64_t millisSinceEpoch) |
| |
| DateTime & | operator= (const std::chrono::system_clock::time_point &timepointToAssign) |
| |
| bool | WasParseSuccessful () |
| |
| Aws::String | ToLocalTimeString (DateFormat format) const |
| |
| Aws::String | ToLocalTimeString (const char *formatStr) const |
| |
| Aws::String | ToGmtString (DateFormat format) const |
| |
| Aws::String | ToGmtString (const char *formatStr) const |
| |
| double | SecondsWithMSPrecision () const |
| |
| int64_t | Millis () const |
| |
| std::chrono::system_clock::time_point | UnderlyingTimestamp () const |
| |
| int | GetYear (bool localTime=false) const |
| |
| Month | GetMonth (bool localTime=false) const |
| |
| int | GetDay (bool localTime=false) const |
| |
| DayOfWeek | GetDayOfWeek (bool localTime=false) const |
| |
| int | GetHour (bool localTime=false) const |
| |
| int | GetMinute (bool localTime=false) const |
| |
| int | GetSecond (bool localTime=false) const |
| |
| bool | IsDST (bool localTime=false) const |
| |