{-# 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.CodeCommit.Types.Folder -- 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.CodeCommit.Types.Folder 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 -- | Returns information about a folder in a repository. -- -- /See:/ 'newFolder' smart constructor. data Folder = Folder' { -- | The fully qualified path of the folder in the repository. absolutePath :: Prelude.Maybe Prelude.Text, -- | The relative path of the specified folder from the folder where the -- query originated. relativePath :: Prelude.Maybe Prelude.Text, -- | The full SHA-1 pointer of the tree information for the commit that -- contains the folder. treeId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Folder' 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: -- -- 'absolutePath', 'folder_absolutePath' - The fully qualified path of the folder in the repository. -- -- 'relativePath', 'folder_relativePath' - The relative path of the specified folder from the folder where the -- query originated. -- -- 'treeId', 'folder_treeId' - The full SHA-1 pointer of the tree information for the commit that -- contains the folder. newFolder :: Folder newFolder = Folder' { absolutePath = Prelude.Nothing, relativePath = Prelude.Nothing, treeId = Prelude.Nothing } -- | The fully qualified path of the folder in the repository. folder_absolutePath :: Lens.Lens' Folder (Prelude.Maybe Prelude.Text) folder_absolutePath = Lens.lens (\Folder' {absolutePath} -> absolutePath) (\s@Folder' {} a -> s {absolutePath = a} :: Folder) -- | The relative path of the specified folder from the folder where the -- query originated. folder_relativePath :: Lens.Lens' Folder (Prelude.Maybe Prelude.Text) folder_relativePath = Lens.lens (\Folder' {relativePath} -> relativePath) (\s@Folder' {} a -> s {relativePath = a} :: Folder) -- | The full SHA-1 pointer of the tree information for the commit that -- contains the folder. folder_treeId :: Lens.Lens' Folder (Prelude.Maybe Prelude.Text) folder_treeId = Lens.lens (\Folder' {treeId} -> treeId) (\s@Folder' {} a -> s {treeId = a} :: Folder) instance Data.FromJSON Folder where parseJSON = Data.withObject "Folder" ( \x -> Folder' Prelude.<$> (x Data..:? "absolutePath") Prelude.<*> (x Data..:? "relativePath") Prelude.<*> (x Data..:? "treeId") ) instance Prelude.Hashable Folder where hashWithSalt _salt Folder' {..} = _salt `Prelude.hashWithSalt` absolutePath `Prelude.hashWithSalt` relativePath `Prelude.hashWithSalt` treeId instance Prelude.NFData Folder where rnf Folder' {..} = Prelude.rnf absolutePath `Prelude.seq` Prelude.rnf relativePath `Prelude.seq` Prelude.rnf treeId