Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
Documentation
data ExportedEnvironmentVariable Source #
Contains information about an exported environment variable.
Exported environment variables are used in conjunction with CodePipeline to export environment variables from the current build stage to subsequent stages in the pipeline. For more information, see Working with variables in the CodePipeline User Guide.
During a build, the value of a variable is available starting with the
install
phase. It can be updated between the start of the install
phase and the end of the post_build
phase. After the post_build
phase ends, the value of exported variables cannot change.
See: newExportedEnvironmentVariable
smart constructor.
Instances
newExportedEnvironmentVariable :: ExportedEnvironmentVariable Source #
Create a value of ExportedEnvironmentVariable
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:value:ExportedEnvironmentVariable'
, exportedEnvironmentVariable_value
- The value assigned to the exported environment variable.
$sel:name:ExportedEnvironmentVariable'
, exportedEnvironmentVariable_name
- The name of the exported environment variable.
exportedEnvironmentVariable_value :: Lens' ExportedEnvironmentVariable (Maybe Text) Source #
The value assigned to the exported environment variable.
exportedEnvironmentVariable_name :: Lens' ExportedEnvironmentVariable (Maybe Text) Source #
The name of the exported environment variable.