Interface SageMakerStartPipelineExecutionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,ScheduleTargetBaseProps
- All Known Implementing Classes:
SageMakerStartPipelineExecutionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:45.354Z")
@Stability(Stable)
public interface SageMakerStartPipelineExecutionProps
extends software.amazon.jsii.JsiiSerializable, ScheduleTargetBaseProps
Properties for a SageMaker Target.
Example:
import software.amazon.awscdk.services.sagemaker.*;
IPipeline pipeline;
Schedule.Builder.create(this, "Schedule")
.schedule(ScheduleExpression.rate(Duration.minutes(60)))
.target(SageMakerStartPipelineExecution.Builder.create(pipeline)
.pipelineParameterList(List.of(SageMakerPipelineParameter.builder()
.name("parameter-name")
.value("parameter-value")
.build()))
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSageMakerStartPipelineExecutionPropsstatic final classAn implementation forSageMakerStartPipelineExecutionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default List<SageMakerPipelineParameter> List of parameter names and values to use when executing the SageMaker Model Building Pipeline.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.scheduler.targets.ScheduleTargetBaseProps
getDeadLetterQueue, getInput, getMaxEventAge, getRetryAttempts, getRole
-
Method Details
-
getPipelineParameterList
List of parameter names and values to use when executing the SageMaker Model Building Pipeline.The length must be between 0 and 200.
Default: - no pipeline parameter list
- See Also:
-
builder
-