Module Values.ErrorDetailsSource

Contains information about the reason that the operation failed. This data type is used as a response element in the GetOrganizationsAccessReport, GetServiceLastAccessedDetails, and GetServiceLastAccessedDetailsWithEntities operations.

Sourcetype nonrec t = {
  1. message : StringType.t option;
    (*

    Detailed information about the reason that the operation failed.

    *)
  2. code : StringType.t option;
    (*

    The error code associated with the operation failure.

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