{-# 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.QLDBSession.Types.StartSessionResult -- 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.QLDBSession.Types.StartSessionResult 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 import Amazonka.QLDBSession.Types.TimingInformation -- | Contains the details of the started session. -- -- /See:/ 'newStartSessionResult' smart constructor. data StartSessionResult = StartSessionResult' { -- | Session token of the started session. This @SessionToken@ is required -- for every subsequent command that is issued during the current session. sessionToken :: Prelude.Maybe Prelude.Text, -- | Contains server-side performance information for the command. timingInformation :: Prelude.Maybe TimingInformation } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'StartSessionResult' 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: -- -- 'sessionToken', 'startSessionResult_sessionToken' - Session token of the started session. This @SessionToken@ is required -- for every subsequent command that is issued during the current session. -- -- 'timingInformation', 'startSessionResult_timingInformation' - Contains server-side performance information for the command. newStartSessionResult :: StartSessionResult newStartSessionResult = StartSessionResult' { sessionToken = Prelude.Nothing, timingInformation = Prelude.Nothing } -- | Session token of the started session. This @SessionToken@ is required -- for every subsequent command that is issued during the current session. startSessionResult_sessionToken :: Lens.Lens' StartSessionResult (Prelude.Maybe Prelude.Text) startSessionResult_sessionToken = Lens.lens (\StartSessionResult' {sessionToken} -> sessionToken) (\s@StartSessionResult' {} a -> s {sessionToken = a} :: StartSessionResult) -- | Contains server-side performance information for the command. startSessionResult_timingInformation :: Lens.Lens' StartSessionResult (Prelude.Maybe TimingInformation) startSessionResult_timingInformation = Lens.lens (\StartSessionResult' {timingInformation} -> timingInformation) (\s@StartSessionResult' {} a -> s {timingInformation = a} :: StartSessionResult) instance Data.FromJSON StartSessionResult where parseJSON = Data.withObject "StartSessionResult" ( \x -> StartSessionResult' Prelude.<$> (x Data..:? "SessionToken") Prelude.<*> (x Data..:? "TimingInformation") ) instance Prelude.Hashable StartSessionResult where hashWithSalt _salt StartSessionResult' {..} = _salt `Prelude.hashWithSalt` sessionToken `Prelude.hashWithSalt` timingInformation instance Prelude.NFData StartSessionResult where rnf StartSessionResult' {..} = Prelude.rnf sessionToken `Prelude.seq` Prelude.rnf timingInformation