interface SageMakerPipelineParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins.CfnSchedulePropsMixin.SageMakerPipelineParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsscheduler/mixins#CfnSchedulePropsMixin_SageMakerPipelineParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.scheduler.mixins.CfnSchedulePropsMixin.SageMakerPipelineParametersProperty |
Python | aws_cdk.mixins_preview.aws_scheduler.mixins.CfnSchedulePropsMixin.SageMakerPipelineParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_scheduler » mixins » CfnSchedulePropsMixin » 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 { mixins as scheduler_mixins } from '@aws-cdk/mixins-preview/aws-scheduler';
const sageMakerPipelineParametersProperty: scheduler_mixins.CfnSchedulePropsMixin.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