Module: AWSCDK::StepFunctions::INextable
- Included in:
- CustomState, DistributedMap, Map, MapBase, Parallel, Pass, TaskStateBase, Wait
- Defined in:
- step_functions/i_nextable.rb
Overview
Interface for states that can have 'next' states.
Class Method Summary collapse
Instance Method Summary collapse
-
#_next(state) ⇒ AWSCDK::StepFunctions::Chain
Go to the indicated state after this state.
Class Method Details
.jsii_overridable_methods ⇒ Object
16 17 18 19 20 |
# File 'step_functions/i_nextable.rb', line 16 def self.jsii_overridable_methods { :_next => { kind: :method, name: "next", is_optional: false }, } end |
Instance Method Details
#_next(state) ⇒ AWSCDK::StepFunctions::Chain
Go to the indicated state after this state.
11 12 13 14 |
# File 'step_functions/i_nextable.rb', line 11 def _next(state) Jsii::Type.check_type(state, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3Nfc3RlcGZ1bmN0aW9ucy5JQ2hhaW5hYmxlIn0=")), "state") jsii_call_method("next", [state]) end |