Interface AfterwardsOptions
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- AfterwardsOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:49.347Z")
@Stability(Stable)
public interface AfterwardsOptions
extends software.amazon.jsii.JsiiSerializable
Options for selecting the choice paths.
 
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.*;
 AfterwardsOptions afterwardsOptions = AfterwardsOptions.builder()
         .includeErrorHandlers(false)
         .includeOtherwise(false)
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAfterwardsOptionsstatic final classAn implementation forAfterwardsOptions
- 
Method SummaryModifier and TypeMethodDescriptionstatic AfterwardsOptions.Builderbuilder()default BooleanWhether to include error handling states.default BooleanWhether to include the default/otherwise transition for the current Choice state.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getIncludeErrorHandlersWhether to include error handling states.If this is true, all states which are error handlers (added through 'onError') and states reachable via error handlers will be included as well. Default: false 
- 
getIncludeOtherwiseWhether to include the default/otherwise transition for the current Choice state.If this is true and the current Choice does not have a default outgoing transition, one will be added included when .next() is called on the chain. Default: false 
- 
builder- Returns:
- a AfterwardsOptions.BuilderofAfterwardsOptions
 
 
-