Class: AWSCDK::Connect::CfnEvaluationForm::AutomaticFailConfigurationProperty

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

Overview

Information about automatic fail configuration for an evaluation form.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(target_section: nil) ⇒ AutomaticFailConfigurationProperty

Returns a new instance of AutomaticFailConfigurationProperty.

Parameters:

  • target_section (String, nil) (defaults to: nil)

    The referenceId of the target section for auto failure.



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_sectionString? (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_propertiesObject



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_jsiiObject



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