Module Values.UpdateBotRecommendationRequestSource

Updates an existing bot recommendation request.

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

    The unique identifier of the bot containing the bot recommendation to be updated.

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

    The version of the bot containing the bot recommendation to be updated.

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

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

    *)
  4. botRecommendationId : Id.t;
    (*

    The unique identifier of the bot recommendation to be updated.

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

    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 : botId:Id.t -> botVersion:DraftBotVersion.t -> localeId:LocaleId.t -> botRecommendationId:Id.t -> encryptionSetting:EncryptionSetting.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.t | `Structure of (string * [> `String of KmsKeyArn.t ]) 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