Values.MigrationAlertSourceProvides information about alerts and warnings that Amazon Lex sends during a migration. The alerts include information about how to resolve the issue.
type nonrec t = {type_ : MigrationAlertType.t option;The type of alert. There are two kinds of alerts: ERROR - There was an issue with the migration that can't be resolved. The migration stops. WARN - There was an issue with the migration that requires manual changes to the new Amazon Lex V2 bot. The migration continues.
*)message : MigrationAlertMessage.t option;A message that describes why the alert was issued.
*)details : MigrationAlertDetails.t option;Additional details about the alert.
*)referenceURLs : MigrationAlertReferenceURLs.t option;A link to the Amazon Lex documentation that describes how to resolve the alert.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of MigrationAlertDetail.t ] list
| `String of MigrationAlertMessage.t ])
list ]