Show / Hide Table of Contents

Interface IAfterwardsOptions

Options for selecting the choice paths.

Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAfterwardsOptions
Syntax (vb)
Public Interface IAfterwardsOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.StepFunctions;

            var afterwardsOptions = new AfterwardsOptions {
                IncludeErrorHandlers = false,
                IncludeOtherwise = false
            };

Synopsis

Properties

IncludeErrorHandlers

Whether to include error handling states.

IncludeOtherwise

Whether to include the default/otherwise transition for the current Choice state.

Properties

IncludeErrorHandlers

Whether to include error handling states.

bool? IncludeErrorHandlers { get; }
Property Value

bool?

Remarks

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

IncludeOtherwise

Whether to include the default/otherwise transition for the current Choice state.

bool? IncludeOtherwise { get; }
Property Value

bool?

Remarks

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

Back to top Generated by DocFX