interface PipelineDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnPipelinePropsMixin.PipelineDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnPipelinePropsMixin_PipelineDefinitionProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnPipelinePropsMixin.PipelineDefinitionProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnPipelinePropsMixin.PipelineDefinitionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnPipelinePropsMixin » PipelineDefinitionProperty |
The definition of the pipeline.
This can be either a JSON string or an Amazon S3 location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const pipelineDefinitionProperty: sagemaker_mixins.CfnPipelinePropsMixin.PipelineDefinitionProperty = {
pipelineDefinitionBody: 'pipelineDefinitionBody',
pipelineDefinitionS3Location: {
bucket: 'bucket',
eTag: 'eTag',
key: 'key',
version: 'version',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| pipeline | string | The JSON pipeline definition of the pipeline. |
| pipeline | IResolvable | S3 | The location of the pipeline definition stored in Amazon S3. |
pipelineDefinitionBody?
Type:
string
(optional)
The JSON pipeline definition of the pipeline.
pipelineDefinitionS3Location?
Type:
IResolvable | S3
(optional)
The location of the pipeline definition stored in Amazon S3.
If specified, SageMaker retrieves the pipeline definition from this location.

.NET
Go
Java
Python
TypeScript