Class: Aws::Connect::Types::TaskTemplateField
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::TaskTemplateField
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Describes a single task template field.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The description of the field.
 - 
  
    
      #id  ⇒ Types::TaskTemplateFieldIdentifier 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique identifier for the field.
 - 
  
    
      #single_select_options  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of options for a single select field.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates the type of field.
 
Instance Attribute Details
#description ⇒ String
The description of the field.
      23473 23474 23475 23476 23477 23478 23479 23480  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23473 class TaskTemplateField < Struct.new( :id, :description, :type, :single_select_options) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ Types::TaskTemplateFieldIdentifier
The unique identifier for the field.
      23473 23474 23475 23476 23477 23478 23479 23480  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23473 class TaskTemplateField < Struct.new( :id, :description, :type, :single_select_options) SENSITIVE = [] include Aws::Structure end  | 
  
#single_select_options ⇒ Array<String>
A list of options for a single select field.
      23473 23474 23475 23476 23477 23478 23479 23480  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23473 class TaskTemplateField < Struct.new( :id, :description, :type, :single_select_options) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
Indicates the type of field.
      23473 23474 23475 23476 23477 23478 23479 23480  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23473 class TaskTemplateField < Struct.new( :id, :description, :type, :single_select_options) SENSITIVE = [] include Aws::Structure end  |