Interface CfnPipeline.VariableDeclarationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipeline.VariableDeclarationProperty.Jsii$Proxy
- Enclosing class:
CfnPipeline
@Stability(Stable)
public static interface CfnPipeline.VariableDeclarationProperty
extends software.amazon.jsii.JsiiSerializable
A variable declared at the pipeline level.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.codepipeline.*;
VariableDeclarationProperty variableDeclarationProperty = VariableDeclarationProperty.builder()
.name("name")
// the properties below are optional
.defaultValue("defaultValue")
.description("description")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipeline.VariableDeclarationPropertystatic final classAn implementation forCfnPipeline.VariableDeclarationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of a pipeline-level variable.- See Also:
-
getDefaultValue
The value of a pipeline-level variable.- See Also:
-
getDescription
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.
- See Also:
-
builder
-