Class: AWSCDK::StepFunctions::FindStateOptions
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::StepFunctions::FindStateOptions
- Defined in:
- step_functions/find_state_options.rb
Overview
Options for finding reachable states.
Instance Attribute Summary collapse
-
#include_error_handlers ⇒ Boolean?
readonly
Whether or not to follow error-handling transitions.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(include_error_handlers: nil) ⇒ FindStateOptions
constructor
A new instance of FindStateOptions.
- #to_jsii ⇒ Object
Constructor Details
#initialize(include_error_handlers: nil) ⇒ FindStateOptions
Returns a new instance of FindStateOptions.
8 9 10 11 |
# File 'step_functions/find_state_options.rb', line 8 def initialize(include_error_handlers: nil) @include_error_handlers = include_error_handlers Jsii::Type.check_type(@include_error_handlers, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJib29sZWFuIn0=")), "includeErrorHandlers") unless @include_error_handlers.nil? end |
Instance Attribute Details
#include_error_handlers ⇒ Boolean? (readonly)
Note:
Default: false
Whether or not to follow error-handling transitions.
17 18 19 |
# File 'step_functions/find_state_options.rb', line 17 def include_error_handlers @include_error_handlers end |
Class Method Details
.jsii_properties ⇒ Object
19 20 21 22 23 |
# File 'step_functions/find_state_options.rb', line 19 def self.jsii_properties { :include_error_handlers => "includeErrorHandlers", } end |
Instance Method Details
#to_jsii ⇒ Object
25 26 27 28 29 30 31 |
# File 'step_functions/find_state_options.rb', line 25 def to_jsii result = {} result.merge!({ "includeErrorHandlers" => @include_error_handlers, }) result.compact end |