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, :actions]

Instance Attribute Summary collapse

Instance Attribute Details

#actions ⇒ Array<String>

A list of possible actions from the view.

Returns:

  • (Array<String>)


41446
41447
41448
41449
41450
41451
41452
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 41446

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.

Returns:

  • (String)


41446
41447
41448
41449
41450
41451
41452
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 41446

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.

Returns:

  • (String)


41446
41447
41448
41449
41450
41451
41452
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 41446

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