Class: AWSCDK::Connect::CfnEvaluationForm::NumericQuestionPropertyValueAutomationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Connect::CfnEvaluationForm::NumericQuestionPropertyValueAutomationProperty
- Defined in:
- connect/cfn_evaluation_form.rb
Overview
Information about the property value used in automation of a numeric questions.
Instance Attribute Summary collapse
-
#label ⇒ String
readonly
The property label of the automation.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(label:) ⇒ NumericQuestionPropertyValueAutomationProperty
constructor
A new instance of NumericQuestionPropertyValueAutomationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(label:) ⇒ NumericQuestionPropertyValueAutomationProperty
Returns a new instance of NumericQuestionPropertyValueAutomationProperty.
2271 2272 2273 2274 |
# File 'connect/cfn_evaluation_form.rb', line 2271 def initialize(label:) @label = label Jsii::Type.check_type(@label, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "label") end |
Instance Attribute Details
#label ⇒ String (readonly)
The property label of the automation.
2280 2281 2282 |
# File 'connect/cfn_evaluation_form.rb', line 2280 def label @label end |
Class Method Details
.jsii_properties ⇒ Object
2282 2283 2284 2285 2286 |
# File 'connect/cfn_evaluation_form.rb', line 2282 def self.jsii_properties { :label => "label", } end |
Instance Method Details
#to_jsii ⇒ Object
2288 2289 2290 2291 2292 2293 2294 |
# File 'connect/cfn_evaluation_form.rb', line 2288 def to_jsii result = {} result.merge!({ "label" => @label, }) result.compact end |