Values.UpdateBotRequestSourceUpdates the configuration of an existing bot.
type nonrec t = {botId : Id.t;The unique identifier of the bot to update. This identifier is returned by the CreateBot operation.
*)botName : Name.t;The new name of the bot. The name must be unique in the account that creates the bot.
*)description : Description.t option;A description of the bot.
*)roleArn : RoleArn.t;The Amazon Resource Name (ARN) of an IAM role that has permissions to access the bot.
*)dataPrivacy : DataPrivacy.t;Provides information on additional privacy protections Amazon Lex should use with the bot's data.
*)idleSessionTTLInSeconds : SessionTTL.t;The time, in seconds, that Amazon Lex should keep information about a user's conversation with the bot. A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Lex deletes any data provided before the timeout. You can specify between 60 (1 minute) and 86,400 (24 hours) seconds.
*)botType : BotType.t option;The type of the bot to be updated.
*)botMembers : BotMembers.t option;The list of bot members in the network associated with the update action.
*)errorLogSettings : ErrorLogSettings.t option;Allows you to modify how Amazon Lex logs errors during bot interactions, including destinations for error logs and the types of errors to be captured.
*)}val make :
?description:??? ->
?botType:??? ->
?botMembers:??? ->
?errorLogSettings:??? ->
botId:Id.t ->
botName:Name.t ->
roleArn:RoleArn.t ->
dataPrivacy:DataPrivacy.t ->
idleSessionTTLInSeconds:SessionTTL.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of SessionTTL.t
| `List of
[> `Structure of (string * [> `String of Id.t ]) list ] list
| `String of Id.t
| `Structure of (string * [> `Boolean of ChildDirected.t ]) list ])
list ]