Current section

Files

Jump to
ex_aws_chime lib ex_aws chime streaming_notification_target.ex
Raw

lib/ex_aws/chime/streaming_notification_target.ex

defmodule ExAws.Chime.StreamingNotificationTarget do
@moduledoc """
Module representing the Chime StreamingNotificationTarget data type
See https://docs.aws.amazon.com/chime/latest/APIReference/API_StreamingNotificationTarget.html
"""
defstruct [
:notification_target
]
@type t :: %__MODULE__{
notification_target: String.t()
}
end