Module Values.MigrationSummarySource

Provides information about migrating a bot from Amazon Lex V1 to Amazon Lex V2.

Sourcetype nonrec t = {
  1. migrationId : MigrationId.t option;
    (*

    The unique identifier that Amazon Lex assigned to the migration.

    *)
  2. v1BotName : BotName.t option;
    (*

    The name of the Amazon Lex V1 bot that is the source of the migration.

    *)
  3. v1BotVersion : Version.t option;
    (*

    The version of the Amazon Lex V1 bot that is the source of the migration.

    *)
  4. v1BotLocale : Locale.t option;
    (*

    The locale of the Amazon Lex V1 bot that is the source of the migration.

    *)
  5. v2BotId : V2BotId.t option;
    (*

    The unique identifier of the Amazon Lex V2 that is the destination of the migration.

    *)
  6. v2BotRole : IamRoleArn.t option;
    (*

    The IAM role that Amazon Lex uses to run the Amazon Lex V2 bot.

    *)
  7. migrationStatus : MigrationStatus.t option;
    (*

    The status of the operation. When the status is COMPLETE the bot is available in Amazon Lex V2. There may be alerts and warnings that need to be resolved to complete the migration.

    *)
  8. migrationStrategy : MigrationStrategy.t option;
    (*

    The strategy used to conduct the migration.

    *)
  9. migrationTimestamp : Timestamp.t option;
    (*

    The date and time that the migration started.

    *)
}
Sourceval make : ?migrationId:??? -> ?v1BotName:??? -> ?v1BotVersion:??? -> ?v1BotLocale:??? -> ?v2BotId:??? -> ?v2BotRole:??? -> ?migrationStatus:??? -> ?migrationStrategy:??? -> ?migrationTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MigrationId.t | `Timestamp of Timestamp.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