Class: AWSCDK::Connect::CfnEvaluationForm::NumericQuestionPropertyValueAutomationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
connect/cfn_evaluation_form.rb

Overview

Information about the property value used in automation of a numeric questions.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(label:) ⇒ NumericQuestionPropertyValueAutomationProperty

Returns a new instance of NumericQuestionPropertyValueAutomationProperty.

Parameters:

  • label (String)

    The property label of the automation.



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

#labelString (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_propertiesObject



2282
2283
2284
2285
2286
# File 'connect/cfn_evaluation_form.rb', line 2282

def self.jsii_properties
  {
    :label => "label",
  }
end

Instance Method Details

#to_jsiiObject



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