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:None
when you create a meeting, all API requests that includeSendReceive
,Send
, orReceive
forAttendeeCapabilities:Video
will be rejected withValidationError 400
.If you specify
MeetingFeatures:Content:MaxResolution:None
when you create a meeting, all API requests that includeSendReceive
,Send
, orReceive
forAttendeeCapabilities:Content
will be rejected withValidationError 400
.You can't set
content
capabilities toSendReceive
orReceive
unless you also setvideo
capabilities toSendReceive
orReceive
. If you don't set thevideo
capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set yourvideo
capability to receive and you set yourcontent
capability to not receive.If meeting features is defined as
Video:MaxResolution:None
butContent:MaxResolution
is defined as something other thanNone
and attendee capabilities are not defined in the API request, then the default attendee video capability is set toReceive
and attendee content capability is set toSendReceive
. This is because contentSendReceive
requires video to be at leastReceive
.When you change an
audio
capability fromNone
orReceive
toSend
orSendReceive
, and an attendee unmutes their microphone, audio flows from the attendee to the other meeting participants.When you change a
video
orcontent
capability fromNone
orReceive
toSend
orSendReceive
, 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 |