Class: Aws::ConnectParticipant::Types::View
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::View
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connectparticipant/types.rb
Overview
A view resource object. Contains metadata and content necessary to render the view.
Constant Summary collapse
- SENSITIVE =
[:name]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the view.
-
#content ⇒ Types::ViewContent
View content containing all content necessary to render a view except for runtime input data.
-
#id ⇒ String
The identifier of the view.
-
#name ⇒ String
The name of the view.
-
#version ⇒ Integer
The current version of the view.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the view.
859 860 861 862 863 864 865 866 867 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 859 class View < Struct.new( :id, :arn, :name, :version, :content) SENSITIVE = [:name] include Aws::Structure end |
#content ⇒ Types::ViewContent
View content containing all content necessary to render a view except for runtime input data.
859 860 861 862 863 864 865 866 867 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 859 class View < Struct.new( :id, :arn, :name, :version, :content) SENSITIVE = [:name] include Aws::Structure end |
#id ⇒ String
The identifier of the view.
859 860 861 862 863 864 865 866 867 |
# File 'lib/aws-sdk-connectparticipant/types.rb', line 859 class View < Struct.new( :id, :arn, :name, :version, :content) SENSITIVE = [:name] include Aws::Structure end |