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

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

Instance Attribute Summary collapse

Instance Attribute Details

#actionsArray<String>

A list of possible actions from the view.

Returns:

  • (Array<String>)


21256
21257
21258
21259
21260
21261
21262
# File 'lib/aws-sdk-connect/types.rb', line 21256

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)


21256
21257
21258
21259
21260
21261
21262
# File 'lib/aws-sdk-connect/types.rb', line 21256

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)


21256
21257
21258
21259
21260
21261
21262
# File 'lib/aws-sdk-connect/types.rb', line 21256

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