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: