Module Values.ManagementPreferenceSource

Preferences for migrating an application to AWS.

Sourcetype nonrec t = {
  1. awsManagedResources : AwsManagedResources.t option;
    (*

    Indicates interest in solutions that are managed by AWS.

    *)
  2. noPreference : NoManagementPreference.t option;
    (*

    No specific preference.

    *)
  3. selfManageResources : SelfManageResources.t option;
    (*

    Indicates interest in managing your own resources on AWS.

    *)
}
Sourceval make : ?awsManagedResources:??? -> ?noPreference:??? -> ?selfManageResources:??? -> 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