Interface SingleStateOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,ParallelProps
- All Known Implementing Classes:
SingleStateOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:17.572Z")
@Stability(Stable)
public interface SingleStateOptions
extends software.amazon.jsii.JsiiSerializable, ParallelProps
Options for creating a single state.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.stepfunctions.*; Object resultSelector; SingleStateOptions singleStateOptions = SingleStateOptions.builder() .comment("comment") .inputPath("inputPath") .outputPath("outputPath") .prefixStates("prefixStates") .resultPath("resultPath") .resultSelector(Map.of( "resultSelectorKey", resultSelector)) .stateId("stateId") .stateName("stateName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forSingleStateOptions
static final class
An implementation forSingleStateOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic SingleStateOptions.Builder
builder()
default String
String to prefix all stateIds in the state machine with.default String
ID of newly created containing state.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.stepfunctions.ParallelProps
getComment, getInputPath, getOutputPath, getResultPath, getResultSelector, getStateName
-
Method Details
-
getPrefixStates
String to prefix all stateIds in the state machine with.Default: stateId
-
getStateId
ID of newly created containing state.Default: Construct ID of the StateMachineFragment
-
builder
- Returns:
- a
SingleStateOptions.Builder
ofSingleStateOptions
-