Module Values.ConflictExceptionSource

The request has conflicting operations. This can occur if you're trying to perform more than one operation on the same resource at the same time.

Sourcetype nonrec t = {
  1. message : string option;
  2. resource : string option;
    (*

    The resource on which there are conflicting operations.

    *)
  3. resourceType : string option;
    (*

    The type of resource on which there are conflicting operations..

    *)
}
Sourceval make : ?message:??? -> ?resource:??? -> ?resourceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String 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