Class: Aws::Connect::Types::EvaluationFormSection
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::EvaluationFormSection
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Information about a section from an evaluation form. A section can contain sections and/or questions. Evaluation forms can only contain sections and subsections (two level nesting).
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #instructions  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The instructions of the section.
 - 
  
    
      #items  ⇒ Array<Types::EvaluationFormItem> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The items of the section.
 - 
  
    
      #ref_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the section.
 - 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The title of the section.
 - 
  
    
      #weight  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The scoring weight of the section.
 
Instance Attribute Details
#instructions ⇒ String
The instructions of the section.
      8992 8993 8994 8995 8996 8997 8998 8999 9000  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 8992 class EvaluationFormSection < Struct.new( :title, :ref_id, :instructions, :items, :weight) SENSITIVE = [] include Aws::Structure end  | 
  
#items ⇒ Array<Types::EvaluationFormItem>
The items of the section.
      8992 8993 8994 8995 8996 8997 8998 8999 9000  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 8992 class EvaluationFormSection < Struct.new( :title, :ref_id, :instructions, :items, :weight) SENSITIVE = [] include Aws::Structure end  | 
  
#ref_id ⇒ String
The identifier of the section. An identifier must be unique within the evaluation form.
      8992 8993 8994 8995 8996 8997 8998 8999 9000  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 8992 class EvaluationFormSection < Struct.new( :title, :ref_id, :instructions, :items, :weight) SENSITIVE = [] include Aws::Structure end  | 
  
#title ⇒ String
The title of the section.
      8992 8993 8994 8995 8996 8997 8998 8999 9000  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 8992 class EvaluationFormSection < Struct.new( :title, :ref_id, :instructions, :items, :weight) SENSITIVE = [] include Aws::Structure end  | 
  
#weight ⇒ Float
The scoring weight of the section.
      8992 8993 8994 8995 8996 8997 8998 8999 9000  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 8992 class EvaluationFormSection < Struct.new( :title, :ref_id, :instructions, :items, :weight) SENSITIVE = [] include Aws::Structure end  |