Current section

Files

Jump to
ex_aws_chime lib ex_aws chime logging_configuration.ex
Raw

lib/ex_aws/chime/logging_configuration.ex

defmodule ExAws.Chime.LoggingConfiguration do
@moduledoc """
Module representing the Chime LoggingConfiguration data type
See https://docs.aws.amazon.com/chime/latest/APIReference/API_LoggingConfiguration.html
"""
defstruct [
:enable_sip_logs
]
@type t :: %__MODULE__{
enable_sip_logs: boolean() | nil
}
end