Class: AWSCDK::Connect::CfnEvaluationForm::AutomaticFailConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Connect::CfnEvaluationForm::AutomaticFailConfigurationProperty
- Defined in:
- connect/cfn_evaluation_form.rb
Overview
Information about automatic fail configuration for an evaluation form.
Instance Attribute Summary collapse
-
#target_section ⇒ String?
readonly
The referenceId of the target section for auto failure.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(target_section: nil) ⇒ AutomaticFailConfigurationProperty
constructor
A new instance of AutomaticFailConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(target_section: nil) ⇒ AutomaticFailConfigurationProperty
Returns a new instance of AutomaticFailConfigurationProperty.
683 684 685 686 |
# File 'connect/cfn_evaluation_form.rb', line 683 def initialize(target_section: nil) @target_section = target_section Jsii::Type.check_type(@target_section, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "targetSection") unless @target_section.nil? end |
Instance Attribute Details
#target_section ⇒ String? (readonly)
The referenceId of the target section for auto failure.
692 693 694 |
# File 'connect/cfn_evaluation_form.rb', line 692 def target_section @target_section end |
Class Method Details
.jsii_properties ⇒ Object
694 695 696 697 698 |
# File 'connect/cfn_evaluation_form.rb', line 694 def self.jsii_properties { :target_section => "targetSection", } end |
Instance Method Details
#to_jsii ⇒ Object
700 701 702 703 704 705 706 |
# File 'connect/cfn_evaluation_form.rb', line 700 def to_jsii result = {} result.merge!({ "targetSection" => @target_section, }) result.compact end |