Show / Hide Table of Contents

Class FindStateOptions

Options for finding reachable states.

Inheritance
object
FindStateOptions
Implements
IFindStateOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class FindStateOptions : IFindStateOptions
Syntax (vb)
Public Class FindStateOptions Implements IFindStateOptions
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 findStateOptions = new FindStateOptions {
                IncludeErrorHandlers = false
            };

Synopsis

Constructors

FindStateOptions()

Options for finding reachable states.

Properties

IncludeErrorHandlers

Whether or not to follow error-handling transitions.

Constructors

FindStateOptions()

Options for finding reachable states.

public FindStateOptions()
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 findStateOptions = new FindStateOptions {
                IncludeErrorHandlers = false
            };

Properties

IncludeErrorHandlers

Whether or not to follow error-handling transitions.

public bool? IncludeErrorHandlers { get; set; }
Property Value

bool?

Remarks

Default: false

Implements

IFindStateOptions
Back to top Generated by DocFX