interface CfnPipelineProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnPipelineProps | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnPipelineProps | 
|  Python | aws_cdk.aws_sagemaker.CfnPipelineProps | 
|  TypeScript | @aws-cdk/aws-sagemaker»CfnPipelineProps | 
Properties for defining a CfnPipeline.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
declare const parallelismConfiguration: any;
declare const pipelineDefinition: any;
const cfnPipelineProps: sagemaker.CfnPipelineProps = {
  pipelineDefinition: pipelineDefinition,
  pipelineName: 'pipelineName',
  roleArn: 'roleArn',
  // the properties below are optional
  parallelismConfiguration: parallelismConfiguration,
  pipelineDescription: 'pipelineDescription',
  pipelineDisplayName: 'pipelineDisplayName',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| pipeline | any | The definition of the pipeline. | 
| pipeline | string | The name of the pipeline. | 
| role | string | The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline. | 
| parallelism | any | AWS::SageMaker::Pipeline.ParallelismConfiguration. | 
| pipeline | string | The description of the pipeline. | 
| pipeline | string | The display name of the pipeline. | 
| tags? | Cfn[] | The tags of the pipeline. | 
pipelineDefinition
Type:
any
The definition of the pipeline.
This can be either a JSON string or an Amazon S3 location.
pipelineName
Type:
string
The name of the pipeline.
roleArn
Type:
string
The Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.
parallelismConfiguration?
Type:
any
(optional)
AWS::SageMaker::Pipeline.ParallelismConfiguration.
pipelineDescription?
Type:
string
(optional)
The description of the pipeline.
pipelineDisplayName?
Type:
string
(optional)
The display name of the pipeline.
tags?
Type:
Cfn[]
(optional)
The tags of the pipeline.
