Class: AWSCDK::StepFunctions::StateBaseProps

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
step_functions/state_base_props.rb

Overview

Properties shared by all states.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(comment: nil, query_language: nil, state_name: nil) ⇒ StateBaseProps

Returns a new instance of StateBaseProps.

Parameters:

  • comment (String, nil) (defaults to: nil)

    A comment describing this state.

  • query_language (AWSCDK::StepFunctions::QueryLanguage, nil) (defaults to: nil)

    The name of the query language used by the state.

  • state_name (String, nil) (defaults to: nil)

    Optional name for this state.



10
11
12
13
14
15
16
17
# File 'step_functions/state_base_props.rb', line 10

def initialize(comment: nil, query_language: nil, state_name: 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?
end

Instance Attribute Details

#commentString? (readonly)

Note:

Default: No comment

A comment describing this state.

Returns:

  • (String, nil)


23
24
25
# File 'step_functions/state_base_props.rb', line 23

def comment
  @comment
end

#query_languageAWSCDK::StepFunctions::QueryLanguage? (readonly)

Note:

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.



31
32
33
# File 'step_functions/state_base_props.rb', line 31

def query_language
  @query_language
end

#state_nameString? (readonly)

Note:

Default: - The construct ID will be used as state name

Optional name for this state.

Returns:

  • (String, nil)


36
37
38
# File 'step_functions/state_base_props.rb', line 36

def state_name
  @state_name
end

Class Method Details

.jsii_propertiesObject



38
39
40
41
42
43
44
# File 'step_functions/state_base_props.rb', line 38

def self.jsii_properties
  {
    :comment => "comment",
    :query_language => "queryLanguage",
    :state_name => "stateName",
  }
end

Instance Method Details

#to_jsiiObject



46
47
48
49
50
51
52
53
54
# File 'step_functions/state_base_props.rb', line 46

def to_jsii
  result = {}
  result.merge!({
    "comment" => @comment,
    "queryLanguage" => @query_language,
    "stateName" => @state_name,
  })
  result.compact
end