interface VariableDeclarationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodePipeline.CfnPipelinePropsMixin.VariableDeclarationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodepipeline#CfnPipelinePropsMixin_VariableDeclarationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.codepipeline.CfnPipelinePropsMixin.VariableDeclarationProperty |
Python | aws_cdk.cfn_property_mixins.aws_codepipeline.CfnPipelinePropsMixin.VariableDeclarationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codepipeline » CfnPipelinePropsMixin » VariableDeclarationProperty |
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 { aws_codepipeline as codepipeline } from '@aws-cdk/cfn-property-mixins';
const variableDeclarationProperty: codepipeline.CfnPipelinePropsMixin.VariableDeclarationProperty = {
defaultValue: 'defaultValue',
description: 'description',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | The value of a pipeline-level variable. |
| description? | string | The description of a pipeline-level variable. |
| name? | string | The name of a pipeline-level variable. |
defaultValue?
Type:
string
(optional)
The value of a pipeline-level variable.
description?
Type:
string
(optional)
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.
name?
Type:
string
(optional)
The name of a pipeline-level variable.

.NET
Go
Java
Python
TypeScript