@Generated(value="jsii-pacmak/1.54.0 (build b1b977a)", date="2022-02-19T00:19:34.266Z") @Stability(value=Stable) public interface AfterwardsOptions extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
AfterwardsOptions.Builder
A builder for
AfterwardsOptions |
static class |
AfterwardsOptions.Jsii$Proxy
An implementation for
AfterwardsOptions |
| Modifier and Type | Method and Description |
|---|---|
static AfterwardsOptions.Builder |
builder() |
default Boolean |
getIncludeErrorHandlers()
Whether to include error handling states.
|
default Boolean |
getIncludeOtherwise()
Whether to include the default/otherwise transition for the current Choice state.
|
@Stability(value=Stable) @Nullable default Boolean getIncludeErrorHandlers()
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
@Stability(value=Stable) @Nullable default Boolean getIncludeOtherwise()
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
@Stability(value=Stable) static AfterwardsOptions.Builder builder()
AfterwardsOptions.Builder of AfterwardsOptionsCopyright © 2022. All rights reserved.