@Generated(value="jsii-pacmak/1.60.0 (build ebcefe6)",
date="2022-07-01T09:58:36.549Z")
public interface AfterwardsOptions
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 java.lang.Boolean |
getIncludeErrorHandlers()
Whether to include error handling states.
|
default java.lang.Boolean |
getIncludeOtherwise()
Whether to include the default/otherwise transition for the current Choice state.
|
default java.lang.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
default java.lang.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
static AfterwardsOptions.Builder builder()
AfterwardsOptions.Builder
of AfterwardsOptions