Module Values.SchemaConversionRequestSource

Provides information about a schema conversion action.

Sourcetype nonrec t = {
  1. status : String_.t option;
    (*

    The schema conversion action status.

    *)
  2. requestIdentifier : String_.t option;
    (*

    The identifier for the schema conversion action.

    *)
  3. migrationProjectArn : String_.t option;
    (*

    The migration project ARN.

    *)
  4. error : ErrorDetails.t option;
  5. exportSqlDetails : ExportSqlDetails.t option;
  6. progress : Progress.t option;
}
Sourceval make : ?status:??? -> ?requestIdentifier:??? -> ?migrationProjectArn:??? -> ?error:??? -> ?exportSqlDetails:??? -> ?progress:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Double of DoubleOptional.t | `Long of Long.t | `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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