Module Values.MigrationAlertSource

Provides information about alerts and warnings that Amazon Lex sends during a migration. The alerts include information about how to resolve the issue.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. message : MigrationAlertMessage.t option;
    (*

    A message that describes why the alert was issued.

    *)
  3. details : MigrationAlertDetails.t option;
    (*

    Additional details about the alert.

    *)
  4. referenceURLs : MigrationAlertReferenceURLs.t option;
    (*

    A link to the Amazon Lex documentation that describes how to resolve the alert.

    *)
}
Sourceval make : ?type_:??? -> ?message:??? -> ?details:??? -> ?referenceURLs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of MigrationAlertDetail.t ] list | `String of MigrationAlertMessage.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