Class: Aws::ChimeSDKMeetings::Types::ContentFeatures
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKMeetings::Types::ContentFeatures
- Defined in:
- gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb
Overview
Lists the content (screen share) features for the meeting. Applies to all attendees.
MeetingFeatures:Content:MaxResolution:None
when you
create a meeting, all API requests that include SendReceive
, Send
,
or Receive
for AttendeeCapabilities:Content
will be rejected with
ValidationError 400
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_resolution ⇒ String
The maximum resolution for the meeting content.
Instance Attribute Details
#max_resolution ⇒ String
The maximum resolution for the meeting content.
FHD
. To use UHD
, you must also provide a
MeetingFeatures:Attendee:MaxCount
value and override the default
size limit of 250 attendees.
329 330 331 332 333 |
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 329 class ContentFeatures < Struct.new( :max_resolution) SENSITIVE = [] include Aws::Structure end |