Module Values.StrategyOptionSource

Information about all the available strategy options for migrating and modernizing an application component.

Sourcetype nonrec t = {
  1. isPreferred : Boolean.t option;
    (*

    Indicates if a specific strategy is preferred for the application component.

    *)
  2. strategy : Strategy.t option;
    (*

    Type of transformation. For example, Rehost, Replatform, and so on.

    *)
  3. targetDestination : TargetDestination.t option;
    (*

    Destination information about where the application component can migrate to. For example, EC2, ECS, and so on.

    *)
  4. toolName : TransformationToolName.t option;
    (*

    The name of the tool that can be used to transform an application component using this strategy.

    *)
}
Sourceval make : ?isPreferred:??? -> ?strategy:??? -> ?targetDestination:??? -> ?toolName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string ]) 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