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.
24111 24112 24113 24114 24115 24116 24117 |
# File 'lib/aws-sdk-connect/types.rb', line 24111 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.
24111 24112 24113 24114 24115 24116 24117 |
# File 'lib/aws-sdk-connect/types.rb', line 24111 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.
24111 24112 24113 24114 24115 24116 24117 |
# File 'lib/aws-sdk-connect/types.rb', line 24111 class ViewContent < Struct.new( :input_schema, :template, :actions) SENSITIVE = [:input_schema, :actions] include Aws::Structure end |