amazonka-chime-sdk-meetings-2.0: Amazon Chime SDK Meetings SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

Description

 
Synopsis

Documentation

data AttendeeCapabilities Source #

The media capabilities of an attendee: audio, video, or content.

You use the capabilities with a set of values that control what the capabilities can do, such as SendReceive data. For more information about those values, see .

When using capabilities, be aware of these corner cases:

  • You can't set content capabilities to SendReceive or Receive unless you also set video capabilities to SendReceive or Receive. If you don't set the video capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your video capability to receive and you set your content capability to not receive.
  • When you change an audio capability from None or Receive to Send or SendReceive , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.
  • When you change a video or content capability from None or Receive to Send or SendReceive , and if the attendee turned on their video or content streams, remote attendess can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.

See: newAttendeeCapabilities smart constructor.

Constructors

AttendeeCapabilities' 

Fields

Instances

Instances details
FromJSON AttendeeCapabilities Source # 
Instance details

Defined in Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

ToJSON AttendeeCapabilities Source # 
Instance details

Defined in Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

Generic AttendeeCapabilities Source # 
Instance details

Defined in Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

Associated Types

type Rep AttendeeCapabilities :: Type -> Type #

Read AttendeeCapabilities Source # 
Instance details

Defined in Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

Show AttendeeCapabilities Source # 
Instance details

Defined in Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

NFData AttendeeCapabilities Source # 
Instance details

Defined in Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

Methods

rnf :: AttendeeCapabilities -> () #

Eq AttendeeCapabilities Source # 
Instance details

Defined in Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

Hashable AttendeeCapabilities Source # 
Instance details

Defined in Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

type Rep AttendeeCapabilities Source # 
Instance details

Defined in Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities

type Rep AttendeeCapabilities = D1 ('MetaData "AttendeeCapabilities" "Amazonka.ChimeSdkMeetings.Types.AttendeeCapabilities" "amazonka-chime-sdk-meetings-2.0-BH1YehHiRGe8LBGen60xi" 'False) (C1 ('MetaCons "AttendeeCapabilities'" 'PrefixI 'True) (S1 ('MetaSel ('Just "audio") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 MediaCapabilities) :*: (S1 ('MetaSel ('Just "video") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 MediaCapabilities) :*: S1 ('MetaSel ('Just "content") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 MediaCapabilities))))

newAttendeeCapabilities Source #

Create a value of AttendeeCapabilities with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:audio:AttendeeCapabilities', attendeeCapabilities_audio - The audio capability assigned to an attendee.

$sel:video:AttendeeCapabilities', attendeeCapabilities_video - The video capability assigned to an attendee.

$sel:content:AttendeeCapabilities', attendeeCapabilities_content - The content capability assigned to an attendee.

attendeeCapabilities_audio :: Lens' AttendeeCapabilities MediaCapabilities Source #

The audio capability assigned to an attendee.

attendeeCapabilities_video :: Lens' AttendeeCapabilities MediaCapabilities Source #

The video capability assigned to an attendee.

attendeeCapabilities_content :: Lens' AttendeeCapabilities MediaCapabilities Source #

The content capability assigned to an attendee.