Module Values.CreateInvoiceUnitRequestSource

This creates a new invoice unit with the provided definition.

Sourcetype nonrec t = {
  1. name : InvoiceUnitName.t;
    (*

    The unique name of the invoice unit that is shown on the generated invoice. This can't be changed once it is set. To change this name, you must delete the invoice unit recreate.

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

    The Amazon Web Services account ID chosen to be the receiver of an invoice unit. All invoices generated for that invoice unit will be sent to this account ID.

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

    The invoice unit's description. This can be changed at a later time.

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

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

    *)
  5. rule : InvoiceUnitRule.t;
    (*

    The InvoiceUnitRule object used to create invoice units.

    *)
  6. resourceTags : ResourceTagList.t option;
    (*

    The tag structure that contains a tag key and value.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?taxInheritanceDisabled:??? -> ?resourceTags:??? -> name:InvoiceUnitName.t -> invoiceReceiver:AccountIdString.t -> rule:InvoiceUnitRule.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of TaxInheritanceDisabledFlag.t | `List of [> `Structure of (string * [> `String of ResourceTagKey.t ]) list ] list | `String of InvoiceUnitName.t | `Structure of (string * [> `List of [> `String of AccountIdString.t ] list ]) 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