Module Values.ResolvedTargetSource

Describes a resolved target.

Sourcetype nonrec t = {
  1. resourceType : TargetResourceTypeId.t option;
    (*

    The resource type of the target.

    *)
  2. targetName : TargetName.t option;
    (*

    The name of the target.

    *)
  3. targetInformation : TargetInformationMap.t option;
    (*

    Information about the target.

    *)
}
Sourceval make : ?resourceType:??? -> ?targetName:??? -> ?targetInformation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TargetInformationKey.t ] * [> `String of TargetInformationValue.t ]) list | `String of TargetResourceTypeId.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