aws-cdk-lib.aws_sagemaker.CfnPipelineProps

interface CfnPipelineProps

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnPipelineProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnPipelineProps
Javasoftware.amazon.awscdk.services.sagemaker.CfnPipelineProps
Pythonaws_cdk.aws_sagemaker.CfnPipelineProps
TypeScript aws-cdk-lib » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';

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

NameTypeDescription
pipelineDefinitionanyThe definition of the pipeline.
pipelineNamestringThe name of the pipeline.
roleArnstringThe Amazon Resource Name (ARN) of the IAM role used to execute the pipeline.
parallelismConfiguration?anyAWS::SageMaker::Pipeline.ParallelismConfiguration.
pipelineDescription?stringThe description of the pipeline.
pipelineDisplayName?stringThe display name of the pipeline.
tags?CfnTag[]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: CfnTag[] (optional)

The tags of the pipeline.