Module Values.InvoiceUnitSource

An invoice unit is a set of mutually exclusive accounts that correspond to your business entity. Invoice units allow you separate Amazon Web Services account costs and configures your invoice for each business entity going forward.

Sourcetype nonrec t = {
  1. invoiceUnitArn : InvoiceUnitArnString.t option;
    (*

    ARN to identify an invoice unit. This information can't be modified or deleted.

    *)
  2. invoiceReceiver : AccountIdString.t option;
    (*

    The account that receives invoices related to the invoice unit.

    *)
  3. name : InvoiceUnitName.t option;
    (*

    A unique name that is distinctive within your Amazon Web Services.

    *)
  4. description : DescriptionString.t option;
    (*

    The assigned description for an invoice unit. This information can't be modified or deleted.

    *)
  5. taxInheritanceDisabled : TaxInheritanceDisabledFlag.t option;
    (*

    Whether the invoice unit based tax inheritance is/ should be enabled or disabled.

    *)
  6. rule : InvoiceUnitRule.t option;
    (*

    An InvoiceUnitRule object used the categorize invoice units.

    *)
  7. lastModified : LastModifiedTimestamp.t option;
    (*

    The last time the invoice unit was updated. This is important to determine the version of invoice unit configuration used to create the invoices. Any invoice created after this modified time will use this invoice unit configuration.

    *)
}
Sourceval make : ?invoiceUnitArn:??? -> ?invoiceReceiver:??? -> ?name:??? -> ?description:??? -> ?taxInheritanceDisabled:??? -> ?rule:??? -> ?lastModified:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of TaxInheritanceDisabledFlag.t | `String of InvoiceUnitArnString.t | `Structure of (string * [> `List of [> `String of AccountIdString.t ] list ]) list | `Timestamp of LastModifiedTimestamp.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