interface PipelineReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.OSIS.PipelineReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsosis#PipelineReference |
Java | software.amazon.awscdk.interfaces.osis.PipelineReference |
Python | aws_cdk.interfaces.aws_osis.PipelineReference |
TypeScript | aws-cdk-lib » interfaces » aws_osis » 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_osis as interfaces_aws_osis } from 'aws-cdk-lib/interfaces';
const pipelineReference: interfaces_aws_osis.PipelineReference = {
pipelineArn: 'pipelineArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| pipeline | string | The PipelineArn of the Pipeline resource. |
pipelineArn
Type:
string
The PipelineArn of the Pipeline resource.

.NET
Go
Java
Python
TypeScript