interface PipelineReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.PipelineReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#PipelineReference |
Java | software.amazon.awscdk.services.codepipeline.PipelineReference |
Python | aws_cdk.aws_codepipeline.PipelineReference |
TypeScript | aws-cdk-lib » aws_codepipeline » PipelineReference |
A reference to a Pipeline resource.
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-lib';
const pipelineReference: codepipeline.PipelineReference = {
pipelineName: 'pipelineName',
};
Properties
| Name | Type | Description |
|---|---|---|
| pipeline | string | The Name of the Pipeline resource. |
pipelineName
Type:
string
The Name of the Pipeline resource.

.NET
Go
Java
Python
TypeScript