Class: Aws::ConnectParticipant::Types::ViewContent
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::ViewContent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connectparticipant/types.rb
Overview
View content containing all content necessary to render a view except for runtime input data.
Constant Summary collapse
- SENSITIVE =
[:input_schema, :template, :actions]
Instance Attribute Summary collapse
-
#actions ⇒ Array<String>
A list of actions possible from the view.
-
#input_schema ⇒ String
The schema representing the input data that the view template must be supplied to render.
-
#template ⇒ String
The view template representing the structure of the view.
Instance Attribute Details
#actions ⇒ Array<String>
A list of actions possible from the view
887 888 889 890 891 892 893 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 887 class ViewContent < Struct.new( :input_schema, :template, :actions) SENSITIVE = [:input_schema, :template, :actions] include Aws::Structure end |
#input_schema ⇒ String
The schema representing the input data that the view template must be supplied to render.
887 888 889 890 891 892 893 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 887 class ViewContent < Struct.new( :input_schema, :template, :actions) SENSITIVE = [:input_schema, :template, :actions] include Aws::Structure end |
#template ⇒ String
The view template representing the structure of the view.
887 888 889 890 891 892 893 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 887 class ViewContent < Struct.new( :input_schema, :template, :actions) SENSITIVE = [:input_schema, :template, :actions] include Aws::Structure end |