interface SageMakerPipelineParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Events.CfnRule.SageMakerPipelineParametersProperty |
Java | software.amazon.awscdk.services.events.CfnRule.SageMakerPipelineParametersProperty |
Python | aws_cdk.aws_events.CfnRule.SageMakerPipelineParametersProperty |
TypeScript | @aws-cdk/aws-events » CfnRule » SageMakerPipelineParametersProperty |
These are custom parameters to use when the target is a SageMaker Model Building Pipeline that starts based on EventBridge events.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as events from '@aws-cdk/aws-events';
const sageMakerPipelineParametersProperty: events.CfnRule.SageMakerPipelineParametersProperty = {
pipelineParameterList: [{
name: 'name',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pipeline | IResolvable | IResolvable | Sage[] | List of Parameter names and values for SageMaker Model Building Pipeline execution. |
pipelineParameterList?
Type:
IResolvable | IResolvable | Sage[]
(optional)
List of Parameter names and values for SageMaker Model Building Pipeline execution.

.NET
Java
Python
TypeScript