Interface CfnPipelinePropsMixin.VariableDeclarationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipelinePropsMixin.VariableDeclarationProperty.Jsii$Proxy
- Enclosing class:
CfnPipelinePropsMixin
@Stability(Stable)
public static interface CfnPipelinePropsMixin.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.cfnpropertymixins.services.codepipeline.*;
VariableDeclarationProperty variableDeclarationProperty = VariableDeclarationProperty.builder()
.defaultValue("defaultValue")
.description("description")
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPipelinePropsMixin.VariableDeclarationPropertystatic final classAn implementation forCfnPipelinePropsMixin.VariableDeclarationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getName
The name of a pipeline-level variable.- See Also:
-
builder
-