Class: AWSCDK::StepFunctions::WriterConfig
- Inherits:
-
Jsii::Object
- Object
- Jsii::Object
- AWSCDK::StepFunctions::WriterConfig
- Defined in:
- step_functions/writer_config.rb
Overview
Configuration to format the output.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(props) ⇒ WriterConfig
constructor
A new instance of WriterConfig.
-
#output_type ⇒ AWSCDK::StepFunctions::OutputType
The format of the Output of the child workflow executions.
-
#transformation ⇒ AWSCDK::StepFunctions::Transformation
The transformation to be applied to the Output of the Child Workflow executions.
Constructor Details
#initialize(props) ⇒ WriterConfig
Returns a new instance of WriterConfig.
9 10 11 12 13 |
# File 'step_functions/writer_config.rb', line 9 def initialize(props) props = props.is_a?(Hash) ? ::AWSCDK::StepFunctions::WriterConfigProps.new(**props.transform_keys(&:to_sym)) : props Jsii::Type.check_type(props, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3Nfc3RlcGZ1bmN0aW9ucy5Xcml0ZXJDb25maWdQcm9wcyJ9")), "props") Jsii::Object.instance_method(:initialize).bind(self).call(props) end |
Class Method Details
.jsii_overridable_methods ⇒ Object
15 16 17 18 19 20 |
# File 'step_functions/writer_config.rb', line 15 def self.jsii_overridable_methods { :output_type => { kind: :property, name: "outputType", is_optional: false }, :transformation => { kind: :property, name: "transformation", is_optional: false }, } end |
Instance Method Details
#output_type ⇒ AWSCDK::StepFunctions::OutputType
The format of the Output of the child workflow executions.
25 26 27 |
# File 'step_functions/writer_config.rb', line 25 def output_type() jsii_get_property("outputType") end |
#transformation ⇒ AWSCDK::StepFunctions::Transformation
The transformation to be applied to the Output of the Child Workflow executions.
32 33 34 |
# File 'step_functions/writer_config.rb', line 32 def transformation() jsii_get_property("transformation") end |