interface CfnPipelineProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnPipelineProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnPipelineProps |
![]() | software.amazon.awscdk.services.sagemaker.CfnPipelineProps |
![]() | aws_cdk.aws_sagemaker.CfnPipelineProps |
![]() | aws-cdk-lib » aws_sagemaker » CfnPipelineProps |
Properties for defining a CfnPipeline
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-pipeline.html
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
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 | The parallelism configuration applied to the pipeline. |
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)
The parallelism configuration applied to the pipeline.
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.