interface Variable
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.Actions.Variable |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipelineactions#Variable |
Java | software.amazon.awscdk.services.codepipeline.actions.Variable |
Python | aws_cdk.aws_codepipeline_actions.Variable |
TypeScript (source) | aws-cdk-lib » aws_codepipeline_actions » Variable |
A pipeline-level variable used for a pipeline execution.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codepipeline_actions as codepipeline_actions } from 'aws-cdk-lib';
const variable: codepipeline_actions.Variable = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of a pipeline-level variable. |
| value | string | The value of a pipeline-level variable. |
name
Type:
string
The name of a pipeline-level variable.
value
Type:
string
The value of a pipeline-level variable.

.NET
Go
Java
Python
TypeScript (