{-# 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.LexV2Models.Types.BotSummary -- 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.LexV2Models.Types.BotSummary where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.LexV2Models.Types.BotStatus import qualified Amazonka.Prelude as Prelude -- | Summary information about a bot returned by the -- -- operation. -- -- /See:/ 'newBotSummary' smart constructor. data BotSummary = BotSummary' { -- | The unique identifier assigned to the bot. Use this ID to get detailed -- information about the bot with the -- -- operation. botId :: Prelude.Maybe Prelude.Text, -- | The name of the bot. botName :: Prelude.Maybe Prelude.Text, -- | The current status of the bot. When the status is @Available@ the bot is -- ready for use. botStatus :: Prelude.Maybe BotStatus, -- | The description of the bot. description :: Prelude.Maybe Prelude.Text, -- | The date and time that the bot was last updated. lastUpdatedDateTime :: Prelude.Maybe Data.POSIX, -- | The latest numerical version in use for the bot. latestBotVersion :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'BotSummary' 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: -- -- 'botId', 'botSummary_botId' - The unique identifier assigned to the bot. Use this ID to get detailed -- information about the bot with the -- -- operation. -- -- 'botName', 'botSummary_botName' - The name of the bot. -- -- 'botStatus', 'botSummary_botStatus' - The current status of the bot. When the status is @Available@ the bot is -- ready for use. -- -- 'description', 'botSummary_description' - The description of the bot. -- -- 'lastUpdatedDateTime', 'botSummary_lastUpdatedDateTime' - The date and time that the bot was last updated. -- -- 'latestBotVersion', 'botSummary_latestBotVersion' - The latest numerical version in use for the bot. newBotSummary :: BotSummary newBotSummary = BotSummary' { botId = Prelude.Nothing, botName = Prelude.Nothing, botStatus = Prelude.Nothing, description = Prelude.Nothing, lastUpdatedDateTime = Prelude.Nothing, latestBotVersion = Prelude.Nothing } -- | The unique identifier assigned to the bot. Use this ID to get detailed -- information about the bot with the -- -- operation. botSummary_botId :: Lens.Lens' BotSummary (Prelude.Maybe Prelude.Text) botSummary_botId = Lens.lens (\BotSummary' {botId} -> botId) (\s@BotSummary' {} a -> s {botId = a} :: BotSummary) -- | The name of the bot. botSummary_botName :: Lens.Lens' BotSummary (Prelude.Maybe Prelude.Text) botSummary_botName = Lens.lens (\BotSummary' {botName} -> botName) (\s@BotSummary' {} a -> s {botName = a} :: BotSummary) -- | The current status of the bot. When the status is @Available@ the bot is -- ready for use. botSummary_botStatus :: Lens.Lens' BotSummary (Prelude.Maybe BotStatus) botSummary_botStatus = Lens.lens (\BotSummary' {botStatus} -> botStatus) (\s@BotSummary' {} a -> s {botStatus = a} :: BotSummary) -- | The description of the bot. botSummary_description :: Lens.Lens' BotSummary (Prelude.Maybe Prelude.Text) botSummary_description = Lens.lens (\BotSummary' {description} -> description) (\s@BotSummary' {} a -> s {description = a} :: BotSummary) -- | The date and time that the bot was last updated. botSummary_lastUpdatedDateTime :: Lens.Lens' BotSummary (Prelude.Maybe Prelude.UTCTime) botSummary_lastUpdatedDateTime = Lens.lens (\BotSummary' {lastUpdatedDateTime} -> lastUpdatedDateTime) (\s@BotSummary' {} a -> s {lastUpdatedDateTime = a} :: BotSummary) Prelude.. Lens.mapping Data._Time -- | The latest numerical version in use for the bot. botSummary_latestBotVersion :: Lens.Lens' BotSummary (Prelude.Maybe Prelude.Text) botSummary_latestBotVersion = Lens.lens (\BotSummary' {latestBotVersion} -> latestBotVersion) (\s@BotSummary' {} a -> s {latestBotVersion = a} :: BotSummary) instance Data.FromJSON BotSummary where parseJSON = Data.withObject "BotSummary" ( \x -> BotSummary' Prelude.<$> (x Data..:? "botId") Prelude.<*> (x Data..:? "botName") Prelude.<*> (x Data..:? "botStatus") Prelude.<*> (x Data..:? "description") Prelude.<*> (x Data..:? "lastUpdatedDateTime") Prelude.<*> (x Data..:? "latestBotVersion") ) instance Prelude.Hashable BotSummary where hashWithSalt _salt BotSummary' {..} = _salt `Prelude.hashWithSalt` botId `Prelude.hashWithSalt` botName `Prelude.hashWithSalt` botStatus `Prelude.hashWithSalt` description `Prelude.hashWithSalt` lastUpdatedDateTime `Prelude.hashWithSalt` latestBotVersion instance Prelude.NFData BotSummary where rnf BotSummary' {..} = Prelude.rnf botId `Prelude.seq` Prelude.rnf botName `Prelude.seq` Prelude.rnf botStatus `Prelude.seq` Prelude.rnf description `Prelude.seq` Prelude.rnf lastUpdatedDateTime `Prelude.seq` Prelude.rnf latestBotVersion