Interface StageOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,StageProps
- All Known Implementing Classes:
StageOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:37.964Z")
@Stability(Stable)
public interface StageOptions
extends software.amazon.jsii.JsiiSerializable, StageProps
Example:
import software.amazon.awscdk.services.stepfunctions.*; Pipeline pipeline = new Pipeline(this, "MyPipeline"); Artifact inputArtifact = new Artifact(); 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.filePath(inputArtifact.atPath("assets/input.json"))) .build(); pipeline.addStage(StageOptions.builder() .stageName("StepFunctions") .actions(List.of(stepFunctionAction)) .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forStageOptions
static final class
An implementation forStageOptions
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.codepipeline.StageProps
getActions, getStageName, getTransitionDisabledReason, getTransitionToEnabled
-
Method Details
-
getPlacement
-
builder
- Returns:
- a
StageOptions.Builder
ofStageOptions
-