Module Values.ConflictExceptionSource

An exception that is thrown when a conflict occurs.

Sourcetype nonrec t = {
  1. message : ErrorMessageString.t option;
  2. resourceId : ResourceIdString.t option;
    (*

    The ID of the Amazon Web Services resource in which a conflict occurred.

    *)
  3. resourceType : ResourceIdType.t option;
    (*

    The type of the Amazon Web Services resource in which a conflict occurred.

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