{-# 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.LexModels.Types.MigrationAlert -- 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.LexModels.Types.MigrationAlert where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.LexModels.Types.MigrationAlertType import qualified Amazonka.Prelude as Prelude -- | Provides information about alerts and warnings that Amazon Lex sends -- during a migration. The alerts include information about how to resolve -- the issue. -- -- /See:/ 'newMigrationAlert' smart constructor. data MigrationAlert = MigrationAlert' { -- | Additional details about the alert. details :: Prelude.Maybe [Prelude.Text], -- | A message that describes why the alert was issued. message :: Prelude.Maybe Prelude.Text, -- | A link to the Amazon Lex documentation that describes how to resolve the -- alert. referenceURLs :: Prelude.Maybe [Prelude.Text], -- | The type of alert. There are two kinds of alerts: -- -- - @ERROR@ - There was an issue with the migration that can\'t be -- resolved. The migration stops. -- -- - @WARN@ - There was an issue with the migration that requires manual -- changes to the new Amazon Lex V2 bot. The migration continues. type' :: Prelude.Maybe MigrationAlertType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'MigrationAlert' 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: -- -- 'details', 'migrationAlert_details' - Additional details about the alert. -- -- 'message', 'migrationAlert_message' - A message that describes why the alert was issued. -- -- 'referenceURLs', 'migrationAlert_referenceURLs' - A link to the Amazon Lex documentation that describes how to resolve the -- alert. -- -- 'type'', 'migrationAlert_type' - The type of alert. There are two kinds of alerts: -- -- - @ERROR@ - There was an issue with the migration that can\'t be -- resolved. The migration stops. -- -- - @WARN@ - There was an issue with the migration that requires manual -- changes to the new Amazon Lex V2 bot. The migration continues. newMigrationAlert :: MigrationAlert newMigrationAlert = MigrationAlert' { details = Prelude.Nothing, message = Prelude.Nothing, referenceURLs = Prelude.Nothing, type' = Prelude.Nothing } -- | Additional details about the alert. migrationAlert_details :: Lens.Lens' MigrationAlert (Prelude.Maybe [Prelude.Text]) migrationAlert_details = Lens.lens (\MigrationAlert' {details} -> details) (\s@MigrationAlert' {} a -> s {details = a} :: MigrationAlert) Prelude.. Lens.mapping Lens.coerced -- | A message that describes why the alert was issued. migrationAlert_message :: Lens.Lens' MigrationAlert (Prelude.Maybe Prelude.Text) migrationAlert_message = Lens.lens (\MigrationAlert' {message} -> message) (\s@MigrationAlert' {} a -> s {message = a} :: MigrationAlert) -- | A link to the Amazon Lex documentation that describes how to resolve the -- alert. migrationAlert_referenceURLs :: Lens.Lens' MigrationAlert (Prelude.Maybe [Prelude.Text]) migrationAlert_referenceURLs = Lens.lens (\MigrationAlert' {referenceURLs} -> referenceURLs) (\s@MigrationAlert' {} a -> s {referenceURLs = a} :: MigrationAlert) Prelude.. Lens.mapping Lens.coerced -- | The type of alert. There are two kinds of alerts: -- -- - @ERROR@ - There was an issue with the migration that can\'t be -- resolved. The migration stops. -- -- - @WARN@ - There was an issue with the migration that requires manual -- changes to the new Amazon Lex V2 bot. The migration continues. migrationAlert_type :: Lens.Lens' MigrationAlert (Prelude.Maybe MigrationAlertType) migrationAlert_type = Lens.lens (\MigrationAlert' {type'} -> type') (\s@MigrationAlert' {} a -> s {type' = a} :: MigrationAlert) instance Data.FromJSON MigrationAlert where parseJSON = Data.withObject "MigrationAlert" ( \x -> MigrationAlert' Prelude.<$> (x Data..:? "details" Data..!= Prelude.mempty) Prelude.<*> (x Data..:? "message") Prelude.<*> (x Data..:? "referenceURLs" Data..!= Prelude.mempty) Prelude.<*> (x Data..:? "type") ) instance Prelude.Hashable MigrationAlert where hashWithSalt _salt MigrationAlert' {..} = _salt `Prelude.hashWithSalt` details `Prelude.hashWithSalt` message `Prelude.hashWithSalt` referenceURLs `Prelude.hashWithSalt` type' instance Prelude.NFData MigrationAlert where rnf MigrationAlert' {..} = Prelude.rnf details `Prelude.seq` Prelude.rnf message `Prelude.seq` Prelude.rnf referenceURLs `Prelude.seq` Prelude.rnf type'