Class: Aws::ChimeSDKMeetings::Types::VideoFeatures

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-chimesdkmeetings/types.rb

Overview

The video features set for the meeting. Applies to all attendees.

<note markdown=“1”> If you specify ‘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`.

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resolutionString

The maximum video resolution for the meeting. Applies to all attendees.

<note markdown=“1”> Defaults to ‘HD`. To use `FHD`, you must also provide a `MeetingFeatures:Attendee:MaxCount` value and override the default size limit of 250 attendees.

</note>

Returns:

  • (String)


1736
1737
1738
1739
1740
# File 'lib/aws-sdk-chimesdkmeetings/types.rb', line 1736

class VideoFeatures < Struct.new(
  :max_resolution)
  SENSITIVE = []
  include Aws::Structure
end