Class: Aws::Connect::Types::TaskTemplateConstraints
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::TaskTemplateConstraints
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Describes constraints that apply to the template fields.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #invisible_fields  ⇒ Array<Types::InvisibleFieldInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Lists the fields that are invisible to agents.
 - 
  
    
      #read_only_fields  ⇒ Array<Types::ReadOnlyFieldInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Lists the fields that are read-only to agents, and cannot be edited.
 - 
  
    
      #required_fields  ⇒ Array<Types::RequiredFieldInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Lists the fields that are required to be filled by agents.
 
Instance Attribute Details
#invisible_fields ⇒ Array<Types::InvisibleFieldInfo>
Lists the fields that are invisible to agents.
      23412 23413 23414 23415 23416 23417 23418  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23412 class TaskTemplateConstraints < Struct.new( :required_fields, :read_only_fields, :invisible_fields) SENSITIVE = [] include Aws::Structure end  | 
  
#read_only_fields ⇒ Array<Types::ReadOnlyFieldInfo>
Lists the fields that are read-only to agents, and cannot be edited.
      23412 23413 23414 23415 23416 23417 23418  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23412 class TaskTemplateConstraints < Struct.new( :required_fields, :read_only_fields, :invisible_fields) SENSITIVE = [] include Aws::Structure end  | 
  
#required_fields ⇒ Array<Types::RequiredFieldInfo>
Lists the fields that are required to be filled by agents.
      23412 23413 23414 23415 23416 23417 23418  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 23412 class TaskTemplateConstraints < Struct.new( :required_fields, :read_only_fields, :invisible_fields) SENSITIVE = [] include Aws::Structure end  |