Module Values.UnprocessedAccountSource

A member account that was included in a request but for which the request could not be processed.

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

    The Amazon Web Services account identifier of the member account that was not processed.

    *)
  2. reason : UnprocessedReason.t option;
    (*

    The reason that the member account request could not be processed.

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