Class: Aws::ConnectParticipant::Types::View
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectParticipant::Types::View
- Defined in:
- gems/aws-sdk-connectparticipant/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.
1000 1001 1002 1003 1004 1005 1006 1007 1008 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 1000 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.
1000 1001 1002 1003 1004 1005 1006 1007 1008 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 1000 class View < Struct.new( :id, :arn, :name, :version, :content) SENSITIVE = [:name] include Aws::Structure end |
#id ⇒ String
The identifier of the view.
1000 1001 1002 1003 1004 1005 1006 1007 1008 |
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 1000 class View < Struct.new( :id, :arn, :name, :version, :content) SENSITIVE = [:name] include Aws::Structure end |