Module Values.AudioLogSettingSource

Settings for logging audio of conversations between Amazon Lex and a user. You specify whether to log audio and the Amazon S3 bucket where the audio file is stored.

Sourcetype nonrec t = {
  1. enabled : Boolean.t;
    (*

    Determines whether audio logging in enabled for the bot.

    *)
  2. destination : AudioLogDestination.t;
  3. selectiveLoggingEnabled : BoxedBoolean.t option;
    (*

    The option to enable selective conversation log capture for audio.

    *)
}
Sourceval context_ : string
Sourceval make : ?selectiveLoggingEnabled:??? -> enabled:Boolean.t -> destination:AudioLogDestination.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Structure of (string * [> `String of KmsKeyArn.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t