Class: AWSCDK::Connect::CfnEvaluationForm::EvaluationFormTextQuestionPropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Connect::CfnEvaluationForm::EvaluationFormTextQuestionPropertiesProperty
- Defined in:
- connect/cfn_evaluation_form.rb
Overview
Information about properties for a text question in an evaluation form.
Instance Attribute Summary collapse
-
#automation ⇒ AWSCDK::IResolvable, ...
readonly
The automation properties of the text question.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(automation: nil) ⇒ EvaluationFormTextQuestionPropertiesProperty
constructor
A new instance of EvaluationFormTextQuestionPropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(automation: nil) ⇒ EvaluationFormTextQuestionPropertiesProperty
Returns a new instance of EvaluationFormTextQuestionPropertiesProperty.
2066 2067 2068 2069 |
# File 'connect/cfn_evaluation_form.rb', line 2066 def initialize(automation: nil) @automation = automation.is_a?(Hash) ? ::AWSCDK::Connect::CfnEvaluationForm::EvaluationFormTextQuestionAutomationProperty.new(**automation.transform_keys(&:to_sym)) : automation Jsii::Type.check_type(@automation, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19jb25uZWN0LkNmbkV2YWx1YXRpb25Gb3JtLkV2YWx1YXRpb25Gb3JtVGV4dFF1ZXN0aW9uQXV0b21hdGlvblByb3BlcnR5In1dfX0=")), "automation") unless @automation.nil? end |
Instance Attribute Details
#automation ⇒ AWSCDK::IResolvable, ... (readonly)
The automation properties of the text question.
2075 2076 2077 |
# File 'connect/cfn_evaluation_form.rb', line 2075 def automation @automation end |
Class Method Details
.jsii_properties ⇒ Object
2077 2078 2079 2080 2081 |
# File 'connect/cfn_evaluation_form.rb', line 2077 def self.jsii_properties { :automation => "automation", } end |
Instance Method Details
#to_jsii ⇒ Object
2083 2084 2085 2086 2087 2088 2089 |
# File 'connect/cfn_evaluation_form.rb', line 2083 def to_jsii result = {} result.merge!({ "automation" => @automation, }) result.compact end |