Module Values.PendingAggregationRequestSource

An object that represents the account ID and region of an aggregator account that is requesting authorization but is not yet authorized.

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

    The 12-digit account ID of the account requesting to aggregate data.

    *)
  2. requesterAwsRegion : AwsRegion.t option;
    (*

    The region requesting to aggregate data.

    *)
}
Sourceval make : ?requesterAccountId:??? -> ?requesterAwsRegion:??? -> 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