#[non_exhaustive]pub struct PipelineVariableDeclaration {
pub name: String,
pub default_value: Option<String>,
pub description: Option<String>,
}
Expand description
A variable declared at the pipeline level.
V2 type pipelines, along with triggers on Git tags and pipeline-level variables, are not currently supported for CloudFormation and CDK resources in CodePipeline. For more information about V2 type pipelines, see Pipeline types in the CodePipeline User Guide.
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: String
The name of a pipeline-level variable.
default_value: Option<String>
The value of a pipeline-level variable.
description: Option<String>
The description of a pipeline-level variable. It's used to add additional context about the variable, and not being used at time when pipeline executes.
Implementations§
source§impl PipelineVariableDeclaration
impl PipelineVariableDeclaration
sourcepub fn default_value(&self) -> Option<&str>
pub fn default_value(&self) -> Option<&str>
The value of a pipeline-level variable.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of a pipeline-level variable. It's used to add additional context about the variable, and not being used at time when pipeline executes.
source§impl PipelineVariableDeclaration
impl PipelineVariableDeclaration
sourcepub fn builder() -> PipelineVariableDeclarationBuilder
pub fn builder() -> PipelineVariableDeclarationBuilder
Creates a new builder-style object to manufacture PipelineVariableDeclaration
.
Trait Implementations§
source§impl Clone for PipelineVariableDeclaration
impl Clone for PipelineVariableDeclaration
source§fn clone(&self) -> PipelineVariableDeclaration
fn clone(&self) -> PipelineVariableDeclaration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PipelineVariableDeclaration
impl Debug for PipelineVariableDeclaration
source§impl PartialEq for PipelineVariableDeclaration
impl PartialEq for PipelineVariableDeclaration
source§fn eq(&self, other: &PipelineVariableDeclaration) -> bool
fn eq(&self, other: &PipelineVariableDeclaration) -> bool
self
and other
values to be equal, and is used
by ==
.