Struct aws_sdk_codebuild::model::ExportedEnvironmentVariable [−][src]
#[non_exhaustive]pub struct ExportedEnvironmentVariable {
pub name: Option<String>,
pub value: Option<String>,
}
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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the exported environment variable.
value: Option<String>
The value assigned to the exported environment variable.
Implementations
Creates a new builder-style object to manufacture ExportedEnvironmentVariable
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more