Class: AWSCDK::StepFunctions::SucceedJsonPathProps
- Inherits:
-
StateBaseProps
- Object
- StateBaseProps
- AWSCDK::StepFunctions::SucceedJsonPathProps
- Defined in:
- step_functions/succeed_json_path_props.rb
Overview
Properties for defining a Succeed state that using JSONPath.
Instance Attribute Summary collapse
-
#comment ⇒ String?
readonly
A comment describing this state.
-
#input_path ⇒ String?
readonly
JSONPath expression to select part of the state to be the input to this state.
-
#output_path ⇒ String?
readonly
JSONPath expression to select part of the state to be the output to this state.
-
#query_language ⇒ AWSCDK::StepFunctions::QueryLanguage?
readonly
The name of the query language used by the state.
-
#state_name ⇒ String?
readonly
Optional name for this state.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(comment: nil, query_language: nil, state_name: nil, input_path: nil, output_path: nil) ⇒ SucceedJsonPathProps
constructor
A new instance of SucceedJsonPathProps.
- #to_jsii ⇒ Object
Constructor Details
#initialize(comment: nil, query_language: nil, state_name: nil, input_path: nil, output_path: nil) ⇒ SucceedJsonPathProps
Returns a new instance of SucceedJsonPathProps.
13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'step_functions/succeed_json_path_props.rb', line 13 def initialize(comment: nil, query_language: nil, state_name: nil, input_path: nil, output_path: nil) @comment = comment Jsii::Type.check_type(@comment, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "comment") unless @comment.nil? @query_language = query_language Jsii::Type.check_type(@query_language, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3Nfc3RlcGZ1bmN0aW9ucy5RdWVyeUxhbmd1YWdlIn0=")), "queryLanguage") unless @query_language.nil? @state_name = state_name Jsii::Type.check_type(@state_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "stateName") unless @state_name.nil? @input_path = input_path Jsii::Type.check_type(@input_path, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "inputPath") unless @input_path.nil? @output_path = output_path Jsii::Type.check_type(@output_path, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "outputPath") unless @output_path.nil? end |
Instance Attribute Details
#comment ⇒ String? (readonly)
Default: No comment
A comment describing this state.
30 31 32 |
# File 'step_functions/succeed_json_path_props.rb', line 30 def comment @comment end |
#input_path ⇒ String? (readonly)
Default: $
JSONPath expression to select part of the state to be the input to this state.
May also be the special value JsonPath.DISCARD, which will cause the effective input to be the empty object {}.
51 52 53 |
# File 'step_functions/succeed_json_path_props.rb', line 51 def input_path @input_path end |
#output_path ⇒ String? (readonly)
Default: $
JSONPath expression to select part of the state to be the output to this state.
May also be the special value JsonPath.DISCARD, which will cause the effective output to be the empty object {}.
59 60 61 |
# File 'step_functions/succeed_json_path_props.rb', line 59 def output_path @output_path end |
#query_language ⇒ AWSCDK::StepFunctions::QueryLanguage? (readonly)
Default: - JSONPath
The name of the query language used by the state.
If the state does not contain a query_language field,
then it will use the query language specified in the top-level query_language field.
38 39 40 |
# File 'step_functions/succeed_json_path_props.rb', line 38 def query_language @query_language end |
#state_name ⇒ String? (readonly)
Default: - The construct ID will be used as state name
Optional name for this state.
43 44 45 |
# File 'step_functions/succeed_json_path_props.rb', line 43 def state_name @state_name end |
Class Method Details
.jsii_properties ⇒ Object
61 62 63 64 65 66 67 68 69 |
# File 'step_functions/succeed_json_path_props.rb', line 61 def self.jsii_properties { :comment => "comment", :query_language => "queryLanguage", :state_name => "stateName", :input_path => "inputPath", :output_path => "outputPath", } end |
Instance Method Details
#to_jsii ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'step_functions/succeed_json_path_props.rb', line 71 def to_jsii result = {} result.merge!(super) result.merge!({ "comment" => @comment, "queryLanguage" => @query_language, "stateName" => @state_name, "inputPath" => @input_path, "outputPath" => @output_path, }) result.compact end |