Module Values.BusinessGoalsSource

Business goals that you specify.

Sourcetype nonrec t = {
  1. licenseCostReduction : BusinessGoalsInteger.t option;
    (*

    Business goal to reduce license costs.

    *)
  2. modernizeInfrastructureWithCloudNativeTechnologies : BusinessGoalsInteger.t option;
    (*

    Business goal to modernize infrastructure by moving to cloud native technologies.

    *)
  3. reduceOperationalOverheadWithManagedServices : BusinessGoalsInteger.t option;
    (*

    Business goal to reduce the operational overhead on the team by moving into managed services.

    *)
  4. speedOfMigration : BusinessGoalsInteger.t option;
    (*

    Business goal to achieve migration at a fast pace.

    *)
}
Sourceval make : ?licenseCostReduction:??? -> ?modernizeInfrastructureWithCloudNativeTechnologies:??? -> ?reduceOperationalOverheadWithManagedServices:??? -> ?speedOfMigration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of BusinessGoalsInteger.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