{-# 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.CodeBuild.Types.ProjectFileSystemLocation -- 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.CodeBuild.Types.ProjectFileSystemLocation where import Amazonka.CodeBuild.Types.FileSystemType 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 -- | Information about a file system created by Amazon Elastic File System -- (EFS). For more information, see -- -- -- /See:/ 'newProjectFileSystemLocation' smart constructor. data ProjectFileSystemLocation = ProjectFileSystemLocation' { -- | The name used to access a file system created by Amazon EFS. CodeBuild -- creates an environment variable by appending the @identifier@ in all -- capital letters to @CODEBUILD_@. For example, if you specify @my_efs@ -- for @identifier@, a new environment variable is create named -- @CODEBUILD_MY_EFS@. -- -- The @identifier@ is used to mount your file system. identifier :: Prelude.Maybe Prelude.Text, -- | A string that specifies the location of the file system created by -- Amazon EFS. Its format is @efs-dns-name:\/directory-path@. You can find -- the DNS name of file system when you view it in the Amazon EFS console. -- The directory path is a path to a directory in the file system that -- CodeBuild mounts. For example, if the DNS name of a file system is -- @fs-abcd1234.efs.us-west-2.amazonaws.com@, and its mount directory is -- @my-efs-mount-directory@, then the @location@ is -- @fs-abcd1234.efs.us-west-2.amazonaws.com:\/my-efs-mount-directory@. -- -- The directory path in the format @efs-dns-name:\/directory-path@ is -- optional. If you do not specify a directory path, the location is only -- the DNS name and CodeBuild mounts the entire file system. location :: Prelude.Maybe Prelude.Text, -- | The mount options for a file system created by Amazon EFS. The default -- mount options used by CodeBuild are -- @nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2@. For -- more information, see -- . mountOptions :: Prelude.Maybe Prelude.Text, -- | The location in the container where you mount the file system. mountPoint :: Prelude.Maybe Prelude.Text, -- | The type of the file system. The one supported type is @EFS@. type' :: Prelude.Maybe FileSystemType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ProjectFileSystemLocation' 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: -- -- 'identifier', 'projectFileSystemLocation_identifier' - The name used to access a file system created by Amazon EFS. CodeBuild -- creates an environment variable by appending the @identifier@ in all -- capital letters to @CODEBUILD_@. For example, if you specify @my_efs@ -- for @identifier@, a new environment variable is create named -- @CODEBUILD_MY_EFS@. -- -- The @identifier@ is used to mount your file system. -- -- 'location', 'projectFileSystemLocation_location' - A string that specifies the location of the file system created by -- Amazon EFS. Its format is @efs-dns-name:\/directory-path@. You can find -- the DNS name of file system when you view it in the Amazon EFS console. -- The directory path is a path to a directory in the file system that -- CodeBuild mounts. For example, if the DNS name of a file system is -- @fs-abcd1234.efs.us-west-2.amazonaws.com@, and its mount directory is -- @my-efs-mount-directory@, then the @location@ is -- @fs-abcd1234.efs.us-west-2.amazonaws.com:\/my-efs-mount-directory@. -- -- The directory path in the format @efs-dns-name:\/directory-path@ is -- optional. If you do not specify a directory path, the location is only -- the DNS name and CodeBuild mounts the entire file system. -- -- 'mountOptions', 'projectFileSystemLocation_mountOptions' - The mount options for a file system created by Amazon EFS. The default -- mount options used by CodeBuild are -- @nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2@. For -- more information, see -- . -- -- 'mountPoint', 'projectFileSystemLocation_mountPoint' - The location in the container where you mount the file system. -- -- 'type'', 'projectFileSystemLocation_type' - The type of the file system. The one supported type is @EFS@. newProjectFileSystemLocation :: ProjectFileSystemLocation newProjectFileSystemLocation = ProjectFileSystemLocation' { identifier = Prelude.Nothing, location = Prelude.Nothing, mountOptions = Prelude.Nothing, mountPoint = Prelude.Nothing, type' = Prelude.Nothing } -- | The name used to access a file system created by Amazon EFS. CodeBuild -- creates an environment variable by appending the @identifier@ in all -- capital letters to @CODEBUILD_@. For example, if you specify @my_efs@ -- for @identifier@, a new environment variable is create named -- @CODEBUILD_MY_EFS@. -- -- The @identifier@ is used to mount your file system. projectFileSystemLocation_identifier :: Lens.Lens' ProjectFileSystemLocation (Prelude.Maybe Prelude.Text) projectFileSystemLocation_identifier = Lens.lens (\ProjectFileSystemLocation' {identifier} -> identifier) (\s@ProjectFileSystemLocation' {} a -> s {identifier = a} :: ProjectFileSystemLocation) -- | A string that specifies the location of the file system created by -- Amazon EFS. Its format is @efs-dns-name:\/directory-path@. You can find -- the DNS name of file system when you view it in the Amazon EFS console. -- The directory path is a path to a directory in the file system that -- CodeBuild mounts. For example, if the DNS name of a file system is -- @fs-abcd1234.efs.us-west-2.amazonaws.com@, and its mount directory is -- @my-efs-mount-directory@, then the @location@ is -- @fs-abcd1234.efs.us-west-2.amazonaws.com:\/my-efs-mount-directory@. -- -- The directory path in the format @efs-dns-name:\/directory-path@ is -- optional. If you do not specify a directory path, the location is only -- the DNS name and CodeBuild mounts the entire file system. projectFileSystemLocation_location :: Lens.Lens' ProjectFileSystemLocation (Prelude.Maybe Prelude.Text) projectFileSystemLocation_location = Lens.lens (\ProjectFileSystemLocation' {location} -> location) (\s@ProjectFileSystemLocation' {} a -> s {location = a} :: ProjectFileSystemLocation) -- | The mount options for a file system created by Amazon EFS. The default -- mount options used by CodeBuild are -- @nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2@. For -- more information, see -- . projectFileSystemLocation_mountOptions :: Lens.Lens' ProjectFileSystemLocation (Prelude.Maybe Prelude.Text) projectFileSystemLocation_mountOptions = Lens.lens (\ProjectFileSystemLocation' {mountOptions} -> mountOptions) (\s@ProjectFileSystemLocation' {} a -> s {mountOptions = a} :: ProjectFileSystemLocation) -- | The location in the container where you mount the file system. projectFileSystemLocation_mountPoint :: Lens.Lens' ProjectFileSystemLocation (Prelude.Maybe Prelude.Text) projectFileSystemLocation_mountPoint = Lens.lens (\ProjectFileSystemLocation' {mountPoint} -> mountPoint) (\s@ProjectFileSystemLocation' {} a -> s {mountPoint = a} :: ProjectFileSystemLocation) -- | The type of the file system. The one supported type is @EFS@. projectFileSystemLocation_type :: Lens.Lens' ProjectFileSystemLocation (Prelude.Maybe FileSystemType) projectFileSystemLocation_type = Lens.lens (\ProjectFileSystemLocation' {type'} -> type') (\s@ProjectFileSystemLocation' {} a -> s {type' = a} :: ProjectFileSystemLocation) instance Data.FromJSON ProjectFileSystemLocation where parseJSON = Data.withObject "ProjectFileSystemLocation" ( \x -> ProjectFileSystemLocation' Prelude.<$> (x Data..:? "identifier") Prelude.<*> (x Data..:? "location") Prelude.<*> (x Data..:? "mountOptions") Prelude.<*> (x Data..:? "mountPoint") Prelude.<*> (x Data..:? "type") ) instance Prelude.Hashable ProjectFileSystemLocation where hashWithSalt _salt ProjectFileSystemLocation' {..} = _salt `Prelude.hashWithSalt` identifier `Prelude.hashWithSalt` location `Prelude.hashWithSalt` mountOptions `Prelude.hashWithSalt` mountPoint `Prelude.hashWithSalt` type' instance Prelude.NFData ProjectFileSystemLocation where rnf ProjectFileSystemLocation' {..} = Prelude.rnf identifier `Prelude.seq` Prelude.rnf location `Prelude.seq` Prelude.rnf mountOptions `Prelude.seq` Prelude.rnf mountPoint `Prelude.seq` Prelude.rnf type' instance Data.ToJSON ProjectFileSystemLocation where toJSON ProjectFileSystemLocation' {..} = Data.object ( Prelude.catMaybes [ ("identifier" Data..=) Prelude.<$> identifier, ("location" Data..=) Prelude.<$> location, ("mountOptions" Data..=) Prelude.<$> mountOptions, ("mountPoint" Data..=) Prelude.<$> mountPoint, ("type" Data..=) Prelude.<$> type' ] )