Class: Aws::Connect::Types::ViewContent
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::ViewContent
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
View content containing all content necessary to render a view except for runtime input data.
Constant Summary collapse
- SENSITIVE =
 [:input_schema, :actions]
Instance Attribute Summary collapse
- 
  
    
      #actions  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of possible actions from the view.
 - 
  
    
      #input_schema  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The data schema matching data that the view template must be provided to render.
 - 
  
    
      #template  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The view template representing the structure of the view.
 
Instance Attribute Details
#actions ⇒ Array<String>
A list of possible actions from the view.
      27039 27040 27041 27042 27043 27044 27045  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 27039 class ViewContent < Struct.new( :input_schema, :template, :actions) SENSITIVE = [:input_schema, :actions] include Aws::Structure end  | 
  
#input_schema ⇒ String
The data schema matching data that the view template must be provided to render.
      27039 27040 27041 27042 27043 27044 27045  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 27039 class ViewContent < Struct.new( :input_schema, :template, :actions) SENSITIVE = [:input_schema, :actions] include Aws::Structure end  | 
  
#template ⇒ String
The view template representing the structure of the view.
      27039 27040 27041 27042 27043 27044 27045  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 27039 class ViewContent < Struct.new( :input_schema, :template, :actions) SENSITIVE = [:input_schema, :actions] include Aws::Structure end  |