Module Values.GetInvoiceUnitResponseSource

This retrieves the invoice unit definition.

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

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

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

    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. name : InvoiceUnitName.t option;
    (*

    The unique name of the invoice unit that is shown on the generated invoice.

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

    The assigned description for an invoice unit.

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

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

    *)
  6. rule : InvoiceUnitRule.t option;
  7. lastModified : LastModifiedTimestamp.t option;
    (*

    The most recent date the invoice unit response was updated.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?invoiceUnitArn:??? -> ?invoiceReceiver:??? -> ?name:??? -> ?description:??? -> ?taxInheritanceDisabled:??? -> ?rule:??? -> ?lastModified:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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