Module Values.StartBotRecommendationRequestSource

Use this to provide your transcript data, and to start the bot recommendation process.

Sourcetype nonrec t = {
  1. botId : Id.t;
    (*

    The unique identifier of the bot containing the bot recommendation.

    *)
  2. botVersion : DraftBotVersion.t;
    (*

    The version of the bot containing the bot recommendation.

    *)
  3. localeId : LocaleId.t;
    (*

    The identifier of the language and locale of the bot recommendation to start. The string must match one of the supported locales. For more information, see Supported languages

    *)
  4. transcriptSourceSetting : TranscriptSourceSetting.t;
    (*

    The object representing the Amazon S3 bucket containing the transcript, as well as the associated metadata.

    *)
  5. encryptionSetting : EncryptionSetting.t option;
    (*

    The object representing the passwords that will be used to encrypt the data related to the bot recommendation results, as well as the KMS key ARN used to encrypt the associated metadata.

    *)
}
Sourceval context_ : string
Sourceval make : ?encryptionSetting:??? -> botId:Id.t -> botVersion:DraftBotVersion.t -> localeId:LocaleId.t -> transcriptSourceSetting:TranscriptSourceSetting.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.t | `Structure of (string * [> `String of KmsKeyArn.t | `Structure of (string * [> `Enum of string | `String of S3BucketName.t | `Structure of (string * [> `List of [> `String of ObjectPrefix.t ] list | `Structure of (string * [> `Structure of (string * [> `Timestamp of Timestamp.t ]) list ]) list ]) list ]) 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