{-# 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.Connect.Types.HierarchyPath -- 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.Connect.Types.HierarchyPath where import Amazonka.Connect.Types.HierarchyGroupSummary 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 the levels of a hierarchy group. -- -- /See:/ 'newHierarchyPath' smart constructor. data HierarchyPath = HierarchyPath' { -- | Information about level five. levelFive :: Prelude.Maybe HierarchyGroupSummary, -- | Information about level four. levelFour :: Prelude.Maybe HierarchyGroupSummary, -- | Information about level one. levelOne :: Prelude.Maybe HierarchyGroupSummary, -- | Information about level three. levelThree :: Prelude.Maybe HierarchyGroupSummary, -- | Information about level two. levelTwo :: Prelude.Maybe HierarchyGroupSummary } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'HierarchyPath' 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: -- -- 'levelFive', 'hierarchyPath_levelFive' - Information about level five. -- -- 'levelFour', 'hierarchyPath_levelFour' - Information about level four. -- -- 'levelOne', 'hierarchyPath_levelOne' - Information about level one. -- -- 'levelThree', 'hierarchyPath_levelThree' - Information about level three. -- -- 'levelTwo', 'hierarchyPath_levelTwo' - Information about level two. newHierarchyPath :: HierarchyPath newHierarchyPath = HierarchyPath' { levelFive = Prelude.Nothing, levelFour = Prelude.Nothing, levelOne = Prelude.Nothing, levelThree = Prelude.Nothing, levelTwo = Prelude.Nothing } -- | Information about level five. hierarchyPath_levelFive :: Lens.Lens' HierarchyPath (Prelude.Maybe HierarchyGroupSummary) hierarchyPath_levelFive = Lens.lens (\HierarchyPath' {levelFive} -> levelFive) (\s@HierarchyPath' {} a -> s {levelFive = a} :: HierarchyPath) -- | Information about level four. hierarchyPath_levelFour :: Lens.Lens' HierarchyPath (Prelude.Maybe HierarchyGroupSummary) hierarchyPath_levelFour = Lens.lens (\HierarchyPath' {levelFour} -> levelFour) (\s@HierarchyPath' {} a -> s {levelFour = a} :: HierarchyPath) -- | Information about level one. hierarchyPath_levelOne :: Lens.Lens' HierarchyPath (Prelude.Maybe HierarchyGroupSummary) hierarchyPath_levelOne = Lens.lens (\HierarchyPath' {levelOne} -> levelOne) (\s@HierarchyPath' {} a -> s {levelOne = a} :: HierarchyPath) -- | Information about level three. hierarchyPath_levelThree :: Lens.Lens' HierarchyPath (Prelude.Maybe HierarchyGroupSummary) hierarchyPath_levelThree = Lens.lens (\HierarchyPath' {levelThree} -> levelThree) (\s@HierarchyPath' {} a -> s {levelThree = a} :: HierarchyPath) -- | Information about level two. hierarchyPath_levelTwo :: Lens.Lens' HierarchyPath (Prelude.Maybe HierarchyGroupSummary) hierarchyPath_levelTwo = Lens.lens (\HierarchyPath' {levelTwo} -> levelTwo) (\s@HierarchyPath' {} a -> s {levelTwo = a} :: HierarchyPath) instance Data.FromJSON HierarchyPath where parseJSON = Data.withObject "HierarchyPath" ( \x -> HierarchyPath' Prelude.<$> (x Data..:? "LevelFive") Prelude.<*> (x Data..:? "LevelFour") Prelude.<*> (x Data..:? "LevelOne") Prelude.<*> (x Data..:? "LevelThree") Prelude.<*> (x Data..:? "LevelTwo") ) instance Prelude.Hashable HierarchyPath where hashWithSalt _salt HierarchyPath' {..} = _salt `Prelude.hashWithSalt` levelFive `Prelude.hashWithSalt` levelFour `Prelude.hashWithSalt` levelOne `Prelude.hashWithSalt` levelThree `Prelude.hashWithSalt` levelTwo instance Prelude.NFData HierarchyPath where rnf HierarchyPath' {..} = Prelude.rnf levelFive `Prelude.seq` Prelude.rnf levelFour `Prelude.seq` Prelude.rnf levelOne `Prelude.seq` Prelude.rnf levelThree `Prelude.seq` Prelude.rnf levelTwo