{-# 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.ECS.Types.EnvironmentFile -- 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.ECS.Types.EnvironmentFile where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.ECS.Types.EnvironmentFileType import qualified Amazonka.Prelude as Prelude -- | A list of files containing the environment variables to pass to a -- container. You can specify up to ten environment files. The file must -- have a @.env@ file extension. Each line in an environment file should -- contain an environment variable in @VARIABLE=VALUE@ format. Lines -- beginning with @#@ are treated as comments and are ignored. For more -- information about the environment variable file syntax, see -- . -- -- If there are environment variables specified using the @environment@ -- parameter in a container definition, they take precedence over the -- variables contained within an environment file. If multiple environment -- files are specified that contain the same variable, they\'re processed -- from the top down. We recommend that you use unique variable names. For -- more information, see -- -- in the /Amazon Elastic Container Service Developer Guide/. -- -- This parameter is only supported for tasks hosted on Fargate using the -- following platform versions: -- -- - Linux platform version @1.4.0@ or later. -- -- - Windows platform version @1.0.0@ or later. -- -- /See:/ 'newEnvironmentFile' smart constructor. data EnvironmentFile = EnvironmentFile' { -- | The Amazon Resource Name (ARN) of the Amazon S3 object containing the -- environment variable file. value :: Prelude.Text, -- | The file type to use. The only supported value is @s3@. type' :: EnvironmentFileType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'EnvironmentFile' 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: -- -- 'value', 'environmentFile_value' - The Amazon Resource Name (ARN) of the Amazon S3 object containing the -- environment variable file. -- -- 'type'', 'environmentFile_type' - The file type to use. The only supported value is @s3@. newEnvironmentFile :: -- | 'value' Prelude.Text -> -- | 'type'' EnvironmentFileType -> EnvironmentFile newEnvironmentFile pValue_ pType_ = EnvironmentFile' {value = pValue_, type' = pType_} -- | The Amazon Resource Name (ARN) of the Amazon S3 object containing the -- environment variable file. environmentFile_value :: Lens.Lens' EnvironmentFile Prelude.Text environmentFile_value = Lens.lens (\EnvironmentFile' {value} -> value) (\s@EnvironmentFile' {} a -> s {value = a} :: EnvironmentFile) -- | The file type to use. The only supported value is @s3@. environmentFile_type :: Lens.Lens' EnvironmentFile EnvironmentFileType environmentFile_type = Lens.lens (\EnvironmentFile' {type'} -> type') (\s@EnvironmentFile' {} a -> s {type' = a} :: EnvironmentFile) instance Data.FromJSON EnvironmentFile where parseJSON = Data.withObject "EnvironmentFile" ( \x -> EnvironmentFile' Prelude.<$> (x Data..: "value") Prelude.<*> (x Data..: "type") ) instance Prelude.Hashable EnvironmentFile where hashWithSalt _salt EnvironmentFile' {..} = _salt `Prelude.hashWithSalt` value `Prelude.hashWithSalt` type' instance Prelude.NFData EnvironmentFile where rnf EnvironmentFile' {..} = Prelude.rnf value `Prelude.seq` Prelude.rnf type' instance Data.ToJSON EnvironmentFile where toJSON EnvironmentFile' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("value" Data..= value), Prelude.Just ("type" Data..= type') ] )