Module Values.DatabaseMigrationPreferenceSource

Preferences for migrating a database to AWS.

Sourcetype nonrec t = {
  1. heterogeneous : Heterogeneous.t option;
    (*

    Indicates whether you are interested in moving from one type of database to another. For example, from SQL Server to Amazon Aurora MySQL-Compatible Edition.

    *)
  2. homogeneous : Homogeneous.t option;
    (*

    Indicates whether you are interested in moving to the same type of database into AWS. For example, from SQL Server in your environment to SQL Server on AWS.

    *)
  3. noPreference : NoDatabaseMigrationPreference.t option;
    (*

    Indicated that you do not prefer heterogeneous or homogeneous.

    *)
}
Sourceval make : ?heterogeneous:??? -> ?homogeneous:??? -> ?noPreference:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `Enum of string ] 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