Module Values.CollectionGroupErrorDetailSource

Error details for a collection group operation.

Sourcetype nonrec t = {
  1. id : CollectionGroupId.t option;
    (*

    If the request contains collection group IDs, the response includes the IDs provided in the request.

    *)
  2. name : CollectionGroupName.t option;
    (*

    If the request contains collection group names, the response includes the names provided in the request.

    *)
  3. errorMessage : String_.t option;
    (*

    A description of the error. For example, The specified Collection Group is not found.

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

    The error code for the request. For example, NOT_FOUND.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?errorMessage:??? -> ?errorCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CollectionGroupId.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