interface SageMakerPipelineParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Scheduler.CfnSchedule.SageMakerPipelineParametersProperty |
Java | software.amazon.awscdk.services.scheduler.CfnSchedule.SageMakerPipelineParametersProperty |
Python | aws_cdk.aws_scheduler.CfnSchedule.SageMakerPipelineParametersProperty |
TypeScript | @aws-cdk/aws-scheduler » CfnSchedule » SageMakerPipelineParametersProperty |
The templated target type for the Amazon SageMaker StartPipelineExecution API operation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as scheduler from '@aws-cdk/aws-scheduler';
const sageMakerPipelineParametersProperty: scheduler.CfnSchedule.SageMakerPipelineParametersProperty = {
pipelineParameterList: [{
name: 'name',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pipeline | IResolvable | IResolvable | Sage[] | List of parameter names and values to use when executing the SageMaker Model Building Pipeline. |
pipelineParameterList?
Type:
IResolvable | IResolvable | Sage[]
(optional)
List of parameter names and values to use when executing the SageMaker Model Building Pipeline.

.NET
Java
Python
TypeScript