interface PipelineReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.PipelineReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#PipelineReference |
Java | software.amazon.awscdk.interfaces.sagemaker.PipelineReference |
Python | aws_cdk.interfaces.aws_sagemaker.PipelineReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_sagemaker } from 'aws-cdk-lib/interfaces';
const pipelineReference: interfaces_aws_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