interface PipelineDefinitionProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnPipeline.PipelineDefinitionProperty | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnPipeline.PipelineDefinitionProperty | 
|  Python | aws_cdk.aws_sagemaker.CfnPipeline.PipelineDefinitionProperty | 
|  TypeScript | @aws-cdk/aws-sagemaker»CfnPipeline»PipelineDefinitionProperty | 
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';
const pipelineDefinitionProperty: sagemaker.CfnPipeline.PipelineDefinitionProperty = {
  pipelineDefinitionBody: 'pipelineDefinitionBody',
  pipelineDefinitionS3Location: {
    bucket: 'bucket',
    key: 'key',
    // the properties below are optional
    eTag: 'eTag',
    version: 'version',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| pipeline | string | CfnPipeline.PipelineDefinitionProperty.PipelineDefinitionBody. | 
| pipeline | IResolvable | S3 | CfnPipeline.PipelineDefinitionProperty.PipelineDefinitionS3Location. | 
pipelineDefinitionBody?
Type:
string
(optional)
CfnPipeline.PipelineDefinitionProperty.PipelineDefinitionBody.
pipelineDefinitionS3Location?
Type:
IResolvable | S3
(optional)
CfnPipeline.PipelineDefinitionProperty.PipelineDefinitionS3Location.
