#[non_exhaustive]pub struct ExportedEnvironmentVariable { /* private fields */ }
Expand description
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.
Implementations§
source§impl ExportedEnvironmentVariable
impl ExportedEnvironmentVariable
sourcepub fn builder() -> ExportedEnvironmentVariableBuilder
pub fn builder() -> ExportedEnvironmentVariableBuilder
Creates a new builder-style object to manufacture ExportedEnvironmentVariable
.
Trait Implementations§
source§impl Clone for ExportedEnvironmentVariable
impl Clone for ExportedEnvironmentVariable
source§fn clone(&self) -> ExportedEnvironmentVariable
fn clone(&self) -> ExportedEnvironmentVariable
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExportedEnvironmentVariable
impl Debug for ExportedEnvironmentVariable
source§impl PartialEq<ExportedEnvironmentVariable> for ExportedEnvironmentVariable
impl PartialEq<ExportedEnvironmentVariable> for ExportedEnvironmentVariable
source§fn eq(&self, other: &ExportedEnvironmentVariable) -> bool
fn eq(&self, other: &ExportedEnvironmentVariable) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExportedEnvironmentVariable
Auto Trait Implementations§
impl RefUnwindSafe for ExportedEnvironmentVariable
impl Send for ExportedEnvironmentVariable
impl Sync for ExportedEnvironmentVariable
impl Unpin for ExportedEnvironmentVariable
impl UnwindSafe for ExportedEnvironmentVariable
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more