{-# 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.IoTSecureTunneling.Types.ConnectionState -- 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.IoTSecureTunneling.Types.ConnectionState where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.IoTSecureTunneling.Types.ConnectionStatus import qualified Amazonka.Prelude as Prelude -- | The state of a connection. -- -- /See:/ 'newConnectionState' smart constructor. data ConnectionState = ConnectionState' { -- | The last time the connection status was updated. lastUpdatedAt :: Prelude.Maybe Data.POSIX, -- | The connection status of the tunnel. Valid values are @CONNECTED@ and -- @DISCONNECTED@. status :: Prelude.Maybe ConnectionStatus } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ConnectionState' 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: -- -- 'lastUpdatedAt', 'connectionState_lastUpdatedAt' - The last time the connection status was updated. -- -- 'status', 'connectionState_status' - The connection status of the tunnel. Valid values are @CONNECTED@ and -- @DISCONNECTED@. newConnectionState :: ConnectionState newConnectionState = ConnectionState' { lastUpdatedAt = Prelude.Nothing, status = Prelude.Nothing } -- | The last time the connection status was updated. connectionState_lastUpdatedAt :: Lens.Lens' ConnectionState (Prelude.Maybe Prelude.UTCTime) connectionState_lastUpdatedAt = Lens.lens (\ConnectionState' {lastUpdatedAt} -> lastUpdatedAt) (\s@ConnectionState' {} a -> s {lastUpdatedAt = a} :: ConnectionState) Prelude.. Lens.mapping Data._Time -- | The connection status of the tunnel. Valid values are @CONNECTED@ and -- @DISCONNECTED@. connectionState_status :: Lens.Lens' ConnectionState (Prelude.Maybe ConnectionStatus) connectionState_status = Lens.lens (\ConnectionState' {status} -> status) (\s@ConnectionState' {} a -> s {status = a} :: ConnectionState) instance Data.FromJSON ConnectionState where parseJSON = Data.withObject "ConnectionState" ( \x -> ConnectionState' Prelude.<$> (x Data..:? "lastUpdatedAt") Prelude.<*> (x Data..:? "status") ) instance Prelude.Hashable ConnectionState where hashWithSalt _salt ConnectionState' {..} = _salt `Prelude.hashWithSalt` lastUpdatedAt `Prelude.hashWithSalt` status instance Prelude.NFData ConnectionState where rnf ConnectionState' {..} = Prelude.rnf lastUpdatedAt `Prelude.seq` Prelude.rnf status