Class: Aws::Connect::Types::ViewContent

Inherits:
Struct
  • Object
show all
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.

Constant Summary collapse

SENSITIVE =
[:input_schema]

Instance Attribute Summary collapse

Instance Attribute Details

#actionsArray<String>

A list of possible actions from the view.

Returns:

  • (Array<String>)


22229
22230
22231
22232
22233
22234
22235
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 22229

class ViewContent < Struct.new(
  :input_schema,
  :template,
  :actions)
  SENSITIVE = [:input_schema]
  include Aws::Structure
end

#input_schemaString

The data schema matching data that the view template must be provided to render.

Returns:

  • (String)


22229
22230
22231
22232
22233
22234
22235
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 22229

class ViewContent < Struct.new(
  :input_schema,
  :template,
  :actions)
  SENSITIVE = [:input_schema]
  include Aws::Structure
end

#templateString

The view template representing the structure of the view.

Returns:

  • (String)


22229
22230
22231
22232
22233
22234
22235
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 22229

class ViewContent < Struct.new(
  :input_schema,
  :template,
  :actions)
  SENSITIVE = [:input_schema]
  include Aws::Structure
end