{-# 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.SymbolicLink -- 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.SymbolicLink where import Amazonka.CodeCommit.Types.FileModeTypeEnum 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 symbolic link in a repository folder. -- -- /See:/ 'newSymbolicLink' smart constructor. data SymbolicLink = SymbolicLink' { -- | The fully qualified path to the folder that contains the symbolic link. absolutePath :: Prelude.Maybe Prelude.Text, -- | The blob ID that contains the information about the symbolic link. blobId :: Prelude.Maybe Prelude.Text, -- | The file mode permissions of the blob that cotains information about the -- symbolic link. fileMode :: Prelude.Maybe FileModeTypeEnum, -- | The relative path of the symbolic link from the folder where the query -- originated. relativePath :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'SymbolicLink' 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', 'symbolicLink_absolutePath' - The fully qualified path to the folder that contains the symbolic link. -- -- 'blobId', 'symbolicLink_blobId' - The blob ID that contains the information about the symbolic link. -- -- 'fileMode', 'symbolicLink_fileMode' - The file mode permissions of the blob that cotains information about the -- symbolic link. -- -- 'relativePath', 'symbolicLink_relativePath' - The relative path of the symbolic link from the folder where the query -- originated. newSymbolicLink :: SymbolicLink newSymbolicLink = SymbolicLink' { absolutePath = Prelude.Nothing, blobId = Prelude.Nothing, fileMode = Prelude.Nothing, relativePath = Prelude.Nothing } -- | The fully qualified path to the folder that contains the symbolic link. symbolicLink_absolutePath :: Lens.Lens' SymbolicLink (Prelude.Maybe Prelude.Text) symbolicLink_absolutePath = Lens.lens (\SymbolicLink' {absolutePath} -> absolutePath) (\s@SymbolicLink' {} a -> s {absolutePath = a} :: SymbolicLink) -- | The blob ID that contains the information about the symbolic link. symbolicLink_blobId :: Lens.Lens' SymbolicLink (Prelude.Maybe Prelude.Text) symbolicLink_blobId = Lens.lens (\SymbolicLink' {blobId} -> blobId) (\s@SymbolicLink' {} a -> s {blobId = a} :: SymbolicLink) -- | The file mode permissions of the blob that cotains information about the -- symbolic link. symbolicLink_fileMode :: Lens.Lens' SymbolicLink (Prelude.Maybe FileModeTypeEnum) symbolicLink_fileMode = Lens.lens (\SymbolicLink' {fileMode} -> fileMode) (\s@SymbolicLink' {} a -> s {fileMode = a} :: SymbolicLink) -- | The relative path of the symbolic link from the folder where the query -- originated. symbolicLink_relativePath :: Lens.Lens' SymbolicLink (Prelude.Maybe Prelude.Text) symbolicLink_relativePath = Lens.lens (\SymbolicLink' {relativePath} -> relativePath) (\s@SymbolicLink' {} a -> s {relativePath = a} :: SymbolicLink) instance Data.FromJSON SymbolicLink where parseJSON = Data.withObject "SymbolicLink" ( \x -> SymbolicLink' Prelude.<$> (x Data..:? "absolutePath") Prelude.<*> (x Data..:? "blobId") Prelude.<*> (x Data..:? "fileMode") Prelude.<*> (x Data..:? "relativePath") ) instance Prelude.Hashable SymbolicLink where hashWithSalt _salt SymbolicLink' {..} = _salt `Prelude.hashWithSalt` absolutePath `Prelude.hashWithSalt` blobId `Prelude.hashWithSalt` fileMode `Prelude.hashWithSalt` relativePath instance Prelude.NFData SymbolicLink where rnf SymbolicLink' {..} = Prelude.rnf absolutePath `Prelude.seq` Prelude.rnf blobId `Prelude.seq` Prelude.rnf fileMode `Prelude.seq` Prelude.rnf relativePath