Interface CfnPipeline.IVariableDeclarationProperty
A variable declared at the pipeline level.
Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IVariableDeclarationProperty
Syntax (vb)
Public Interface IVariableDeclarationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodePipeline;
var variableDeclarationProperty = new VariableDeclarationProperty {
Name = "name",
// the properties below are optional
DefaultValue = "defaultValue",
Description = "description"
};
Synopsis
Properties
Default |
The value of a pipeline-level variable. |
Description | The description of a pipeline-level variable. |
Name | The name of a pipeline-level variable. |
Properties
DefaultValue
The value of a pipeline-level variable.
virtual string DefaultValue { get; }
Property Value
System.
Remarks
Description
The description of a pipeline-level variable.
virtual string Description { get; }
Property Value
System.
Remarks
It's used to add additional context about the variable, and not being used at time when pipeline executes.
Name
The name of a pipeline-level variable.
string Name { get; }
Property Value
System.