Current section
Files
Jump to
Current section
Files
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