Module Values.ConversationLogsResponseSource

Contains information about conversation log settings.

Sourcetype nonrec t = {
  1. logSettings : LogSettingsResponseList.t option;
    (*

    The settings for your conversation logs. You can log text, audio, or both.

    *)
  2. iamRoleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role used to write your logs to CloudWatch Logs or an S3 bucket.

    *)
}
Sourceval make : ?logSettings:??? -> ?iamRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of KmsKeyArn.t ]) list ] list | `String of IamRoleArn.t ]) 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