Interface StageOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,StageProps
- All Known Implementing Classes:
StageOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:05.333Z")
@Stability(Stable)
public interface StageOptions
extends software.amazon.jsii.JsiiSerializable, StageProps
Example:
import software.amazon.awscdk.services.stepfunctions.*;
Pipeline pipeline = new Pipeline(this, "MyPipeline");
Pass startState = new Pass(this, "StartState");
StateMachine simpleStateMachine = StateMachine.Builder.create(this, "SimpleStateMachine")
.definition(startState)
.build();
StepFunctionInvokeAction stepFunctionAction = StepFunctionInvokeAction.Builder.create()
.actionName("Invoke")
.stateMachine(simpleStateMachine)
.stateMachineInput(StateMachineInput.literal(Map.of("IsHelloWorldExample", true)))
.build();
pipeline.addStage(StageOptions.builder()
.stageName("StepFunctions")
.actions(List.of(stepFunctionAction))
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forStageOptionsstatic final classAn implementation forStageOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.codepipeline.StageProps
getActions, getStageName, getTransitionDisabledReason, getTransitionToEnabled
-
Method Details
-
getPlacement
-
builder
- Returns:
- a
StageOptions.BuilderofStageOptions
-