Class: Aws::ChimeSDKMeetings::Types::ContentFeatures

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

Overview

Lists the content (screen share) features for the meeting. Applies to all attendees.

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

</note>

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resolutionString

The maximum resolution for the meeting content.

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

</note>

Returns:

  • (String)


329
330
331
332
333
# File 'lib/aws-sdk-chimesdkmeetings/types.rb', line 329

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