Skip to content

Commit

Permalink
Add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardd committed Sep 26, 2024
1 parent d21e3dd commit 44e4f86
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions lib/ex_aws/chime/meetings/attendee_capabilities.ex
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
defmodule ExAws.Chime.Meetings.AttendeeCapabilities do
@moduledoc """
Module representing the Chime AttendeeCapabilities data type
See https://docs.aws.amazon.com/chime/latest/APIReference/API_meeting-chime_AttendeeCapabilities.html
"""

defstruct [
:audio,
:content,
:video
]

@type capability_value :: :SendReceive | :Send | :Receive | :None

@type t :: %__MODULE__{
audio: capability_value(),
content: capability_value(),
video: capability_value()
}
end

0 comments on commit 44e4f86

Please sign in to comment.