Module Values.ConflictExceptionSource

The request conflicts with the current state of the resource. This can occur when trying to create a resource that already exists or delete a resource that is in use.

Sourcetype nonrec t = {
  1. errorCode : ErrorCode.t option;
    (*

    The error code associated with the exception.

    *)
  2. message : String_.t option;
  3. resourceId : String_.t option;
    (*

    The identifier of the resource that caused the conflict.

    *)
  4. resourceType : String_.t option;
    (*

    The type of the resource that caused the conflict.

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