Module Values.UnprocessedAccountSource

Provides information about an account-related request that hasn't been processed.

Sourcetype nonrec t = {
  1. accountId : string option;
    (*

    The Amazon Web Services account ID for the account that the request applies to.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    The source of the issue or delay in processing the request.

    *)
  3. errorMessage : string option;
    (*

    The reason why the request hasn't been processed.

    *)
}
Sourceval make : ?accountId:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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