interface VariableDeclarationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Mixins.CfnPipelinePropsMixin.VariableDeclarationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/mixins#CfnPipelinePropsMixin_VariableDeclarationProperty |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.mixins.CfnPipelinePropsMixin.VariableDeclarationProperty |
Python | aws_cdk.mixins_preview.aws_codepipeline.mixins.CfnPipelinePropsMixin.VariableDeclarationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codepipeline » mixins » 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 { mixins as codepipeline_mixins } from '@aws-cdk/mixins-preview/aws-codepipeline';
const variableDeclarationProperty: codepipeline_mixins.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