Current section
Files
Jump to
Current section
Files
lib/ex_aws/chime/voice_connector_settings.ex
defmodule ExAws.Chime.VoiceConnectorSettings do
@moduledoc """
Module representing the Chime VoiceConnectorSettings data type
See https://docs.aws.amazon.com/chime/latest/APIReference/API_VoiceConnectorSettings.html
"""
defstruct [
:cdr_bucket
]
@type t :: %__MODULE__{
cdr_bucket: String.t() | nil
}
end