Module Values.InvoiceUnitRuleSource

This is used to categorize the invoice unit. Values are Amazon Web Services account IDs. Currently, the only supported rule is LINKED_ACCOUNT.

Sourcetype nonrec t = {
  1. linkedAccounts : RuleAccountIdList.t option;
    (*

    The list of LINKED_ACCOUNT IDs where charges are included within the invoice unit.

    *)
  2. billSourceAccounts : RuleAccountIdList.t option;
    (*

    A list of Amazon Web Services account IDs that have delegated their billing responsibility to the receiver account through transfer billing. Unlike linked accounts, these bill source accounts can be payer accounts from other organizations that have authorized billing transfer to this account.

    *)
}
Sourceval make : ?linkedAccounts:??? -> ?billSourceAccounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AccountIdString.t ] list ]) 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