Module Values.FailedItemSource

Details of a resource that failed when trying to update it's association to a resource set.

Sourcetype nonrec t = {
  1. uRI : Identifier.t option;
    (*

    The univeral resource indicator (URI) of the resource that failed.

    *)
  2. reason : FailedItemReason.t option;
    (*

    The reason the resource's association could not be updated.

    *)
}
Sourceval make : ?uRI:??? -> ?reason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Identifier.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