#[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
sourceimpl ExportedEnvironmentVariable
impl ExportedEnvironmentVariable
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExportedEnvironmentVariable
.
Trait Implementations
sourceimpl Clone for ExportedEnvironmentVariable
impl Clone for ExportedEnvironmentVariable
sourcefn clone(&self) -> ExportedEnvironmentVariable
fn clone(&self) -> ExportedEnvironmentVariable
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ExportedEnvironmentVariable
impl Debug for ExportedEnvironmentVariable
sourceimpl PartialEq<ExportedEnvironmentVariable> for ExportedEnvironmentVariable
impl PartialEq<ExportedEnvironmentVariable> for ExportedEnvironmentVariable
sourcefn eq(&self, other: &ExportedEnvironmentVariable) -> bool
fn eq(&self, other: &ExportedEnvironmentVariable) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more