Class SageMakerStartPipelineExecution
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.scheduler.targets.ScheduleTargetBase
software.amazon.awscdk.services.scheduler.targets.SageMakerStartPipelineExecution
- All Implemented Interfaces:
IScheduleTarget,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:30.047Z")
@Stability(Stable)
public class SageMakerStartPipelineExecution
extends ScheduleTargetBase
implements IScheduleTarget
Use a SageMaker pipeline as a target for AWS EventBridge Scheduler.
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 TypeClassDescriptionstatic final classA fluent builder forSageMakerStartPipelineExecution.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.scheduler.IScheduleTarget
IScheduleTarget.Jsii$Default, IScheduleTarget.Jsii$Proxy -
Constructor Summary
ConstructorsModifierConstructorDescriptionSageMakerStartPipelineExecution(IPipeline pipeline) SageMakerStartPipelineExecution(IPipeline pipeline, SageMakerStartPipelineExecutionProps props) protectedSageMakerStartPipelineExecution(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedSageMakerStartPipelineExecution(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionprotected voidaddTargetActionToRole(IRole role) protected ScheduleTargetConfigbindBaseTargetConfig(ISchedule schedule) Methods inherited from class software.amazon.awscdk.services.scheduler.targets.ScheduleTargetBase
bind, getTargetArnMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.awscdk.services.scheduler.IScheduleTarget
bindMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
SageMakerStartPipelineExecution
protected SageMakerStartPipelineExecution(software.amazon.jsii.JsiiObjectRef objRef) -
SageMakerStartPipelineExecution
protected SageMakerStartPipelineExecution(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
SageMakerStartPipelineExecution
@Stability(Stable) public SageMakerStartPipelineExecution(@NotNull IPipeline pipeline, @Nullable SageMakerStartPipelineExecutionProps props) - Parameters:
pipeline- This parameter is required.props-
-
SageMakerStartPipelineExecution
- Parameters:
pipeline- This parameter is required.
-
-
Method Details
-
addTargetActionToRole
- Specified by:
addTargetActionToRolein classScheduleTargetBase- Parameters:
role- This parameter is required.
-
bindBaseTargetConfig
@Stability(Stable) @NotNull protected ScheduleTargetConfig bindBaseTargetConfig(@NotNull ISchedule schedule) - Overrides:
bindBaseTargetConfigin classScheduleTargetBase- Parameters:
schedule- This parameter is required.
-