Interface SageMakerStartPipelineExecutionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,ScheduleTargetBaseProps
- All Known Implementing Classes:
SageMakerStartPipelineExecutionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:11.991Z")
@Stability(Experimental)
public interface SageMakerStartPipelineExecutionProps
extends software.amazon.jsii.JsiiSerializable, ScheduleTargetBaseProps
(experimental) 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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSageMakerStartPipelineExecutionProps
static final class
An implementation forSageMakerStartPipelineExecutionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default List<SageMakerPipelineParameter>
(experimental) List of parameter names and values to use when executing the SageMaker Model Building Pipeline.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.scheduler.targets.alpha.ScheduleTargetBaseProps
getDeadLetterQueue, getInput, getMaxEventAge, getRetryAttempts, getRole
-
Method Details
-
getPipelineParameterList
@Stability(Experimental) @Nullable default List<SageMakerPipelineParameter> getPipelineParameterList()(experimental) 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
-