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

.NET
Go
Java
Python
TypeScript