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
about those values, see .
When using capabilities, be aware of these corner cases:
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.When you change an
audio
capability fromNone
orReceive
toSend
orSendReceive
, and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.When you change a
video
orcontent
capability fromNone
orReceive
toSend
orSendReceive
, and if the attendee turned 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.
124 125 126 127 128 129 130 |
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 124 class AttendeeCapabilities < Struct.new( :audio, :video, :content) SENSITIVE = [] include Aws::Structure end |
#content ⇒ String
The content capability assigned to an attendee.
124 125 126 127 128 129 130 |
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 124 class AttendeeCapabilities < Struct.new( :audio, :video, :content) SENSITIVE = [] include Aws::Structure end |
#video ⇒ String
The video capability assigned to an attendee.
124 125 126 127 128 129 130 |
# File 'gems/aws-sdk-chimesdkmeetings/lib/aws-sdk-chimesdkmeetings/types.rb', line 124 class AttendeeCapabilities < Struct.new( :audio, :video, :content) SENSITIVE = [] include Aws::Structure end |