Class: Aws::Connect::Types::EvaluationFormSingleSelectQuestionOption
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::EvaluationFormSingleSelectQuestionOption
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Information about the automation configuration in single select questions.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #automatic_fail  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The flag to mark the option as automatic fail.
 - 
  
    
      #ref_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the answer option.
 - 
  
    
      #score  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The score assigned to the answer option.
 - 
  
    
      #text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The title of the answer option.
 
Instance Attribute Details
#automatic_fail ⇒ Boolean
The flag to mark the option as automatic fail. If an automatic fail answer is provided, the overall evaluation gets a score of 0.
      9072 9073 9074 9075 9076 9077 9078 9079  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 9072 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end  | 
  
#ref_id ⇒ String
The identifier of the answer option. An identifier must be unique within the question.
      9072 9073 9074 9075 9076 9077 9078 9079  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 9072 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end  | 
  
#score ⇒ Integer
The score assigned to the answer option.
      9072 9073 9074 9075 9076 9077 9078 9079  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 9072 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end  | 
  
#text ⇒ String
The title of the answer option.
      9072 9073 9074 9075 9076 9077 9078 9079  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 9072 class EvaluationFormSingleSelectQuestionOption < Struct.new( :ref_id, :text, :score, :automatic_fail) SENSITIVE = [] include Aws::Structure end  |