Class: Aws::ChimeSDKMeetings::Types::AttendeeCapabilities
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKMeetings::Types::AttendeeCapabilities
- Defined in:
- gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb
Overview
The media capabilities of an attendee: audio, video, or content.
SendReceive data. For more information,
refer to and .
When using capabilities, be aware of these corner cases:
If you specify
MeetingFeatures:Video:MaxResolution:Nonewhen you create a meeting, all API requests that includeSendReceive,Send, orReceiveforAttendeeCapabilities:Videowill be rejected withValidationError 400.If you specify
MeetingFeatures:Content:MaxResolution:Nonewhen you create a meeting, all API requests that includeSendReceive,Send, orReceiveforAttendeeCapabilities:Contentwill be rejected withValidationError 400.You can't set
contentcapabilities toSendReceiveorReceiveunless you also setvideocapabilities toSendReceiveorReceive. If you don't set thevideocapability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set yourvideocapability to receive and you set yourcontentcapability to not receive.If meeting features is defined as
Video:MaxResolution:NonebutContent:MaxResolutionis defined as something other thanNoneand attendee capabilities are not defined in the API request, then the default attendee video capability is set toReceiveand attendee content capability is set toSendReceive. This is because contentSendReceiverequires video to be at leastReceive.When you change an
audiocapability fromNoneorReceivetoSendorSendReceive, and an attendee unmutes their microphone, audio flows from the attendee to the other meeting participants.When you change a
videoorcontentcapability fromNoneorReceivetoSendorSendReceive, and the attendee turns on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#audio ⇒ String
The audio capability assigned to an attendee.
-
#content ⇒ String
The content capability assigned to an attendee.
-
#video ⇒ String
The video capability assigned to an attendee.
Instance Attribute Details
#audio ⇒ String
The audio capability assigned to an attendee.
158 159 160 161 162 163 164 |
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 158 class AttendeeCapabilities < Struct.new( :audio, :video, :content) SENSITIVE = [] include Aws::Structure end |
#content ⇒ String
The content capability assigned to an attendee.
158 159 160 161 162 163 164 |
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 158 class AttendeeCapabilities < Struct.new( :audio, :video, :content) SENSITIVE = [] include Aws::Structure end |
#video ⇒ String
The video capability assigned to an attendee.
158 159 160 161 162 163 164 |
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 158 class AttendeeCapabilities < Struct.new( :audio, :video, :content) SENSITIVE = [] include Aws::Structure end |