interface PipelineReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataPipeline.PipelineReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatapipeline#PipelineReference |
Java | software.amazon.awscdk.services.datapipeline.PipelineReference |
Python | aws_cdk.aws_datapipeline.PipelineReference |
TypeScript | aws-cdk-lib » aws_datapipeline » 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_datapipeline as datapipeline } from 'aws-cdk-lib';
const pipelineReference: datapipeline.PipelineReference = {
pipelineId: 'pipelineId',
};
Properties
| Name | Type | Description |
|---|---|---|
| pipeline | string | The PipelineId of the Pipeline resource. |
pipelineId
Type:
string
The PipelineId of the Pipeline resource.

.NET
Go
Java
Python
TypeScript