interface SageMakerPipelineParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Scheduler.CfnSchedule.SageMakerPipelineParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsscheduler#CfnSchedule_SageMakerPipelineParametersProperty |
Java | software.amazon.awscdk.services.scheduler.CfnSchedule.SageMakerPipelineParametersProperty |
Python | aws_cdk.aws_scheduler.CfnSchedule.SageMakerPipelineParametersProperty |
TypeScript | aws-cdk-lib » 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 { aws_scheduler as scheduler } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript