Class: Aws::Connect::Types::ViewInputContent
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Connect::Types::ViewInputContent
 
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
View content containing all content necessary to render a view except for runtime input data and the runtime input schema, which is auto-generated by this operation.
Constant Summary collapse
- SENSITIVE =
- [:actions] 
Instance Attribute Summary collapse
- 
  
    
      #actions  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of possible actions from the view. 
- 
  
    
      #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.
| 28963 28964 28965 28966 28967 28968 | # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28963 class ViewInputContent < Struct.new( :template, :actions) SENSITIVE = [:actions] include Aws::Structure end | 
#template ⇒ String
The view template representing the structure of the view.
| 28963 28964 28965 28966 28967 28968 | # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28963 class ViewInputContent < Struct.new( :template, :actions) SENSITIVE = [:actions] include Aws::Structure end |