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