{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.IoTEventsData.Types.TimestampValue -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.IoTEventsData.Types.TimestampValue where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | Contains information about a timestamp. -- -- /See:/ 'newTimestampValue' smart constructor. data TimestampValue = TimestampValue' { -- | The value of the timestamp, in the Unix epoch format. timeInMillis :: Prelude.Maybe Prelude.Natural } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TimestampValue' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'timeInMillis', 'timestampValue_timeInMillis' - The value of the timestamp, in the Unix epoch format. newTimestampValue :: TimestampValue newTimestampValue = TimestampValue' {timeInMillis = Prelude.Nothing} -- | The value of the timestamp, in the Unix epoch format. timestampValue_timeInMillis :: Lens.Lens' TimestampValue (Prelude.Maybe Prelude.Natural) timestampValue_timeInMillis = Lens.lens (\TimestampValue' {timeInMillis} -> timeInMillis) (\s@TimestampValue' {} a -> s {timeInMillis = a} :: TimestampValue) instance Prelude.Hashable TimestampValue where hashWithSalt _salt TimestampValue' {..} = _salt `Prelude.hashWithSalt` timeInMillis instance Prelude.NFData TimestampValue where rnf TimestampValue' {..} = Prelude.rnf timeInMillis instance Data.ToJSON TimestampValue where toJSON TimestampValue' {..} = Data.object ( Prelude.catMaybes [("timeInMillis" Data..=) Prelude.<$> timeInMillis] )