interface CfnInvoiceUnitProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_invoicing.CfnInvoiceUnitProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinvoicing#CfnInvoiceUnitProps | 
|  Java | software.amazon.awscdk.services.invoicing.CfnInvoiceUnitProps | 
|  Python | aws_cdk.aws_invoicing.CfnInvoiceUnitProps | 
|  TypeScript | aws-cdk-lib»aws_invoicing»CfnInvoiceUnitProps | 
Properties for defining a CfnInvoiceUnit.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_invoicing as invoicing } from 'aws-cdk-lib';
const cfnInvoiceUnitProps: invoicing.CfnInvoiceUnitProps = {
  invoiceReceiver: 'invoiceReceiver',
  name: 'name',
  rule: {
    linkedAccounts: ['linkedAccounts'],
  },
  // the properties below are optional
  description: 'description',
  resourceTags: [{
    key: 'key',
    value: 'value',
  }],
  taxInheritanceDisabled: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| invoice | string | The account that receives invoices related to the invoice unit. | 
| name | string | A unique name that is distinctive within your AWS . | 
| rule | IResolvable | Rule | An InvoiceUnitRuleobject used the categorize invoice units. | 
| description? | string | The assigned description for an invoice unit. | 
| resource | Resource[] | The tag structure that contains a tag key and value. | 
| tax | boolean | IResolvable | Whether the invoice unit based tax inheritance is/ should be enabled or disabled. | 
invoiceReceiver
Type:
string
The account that receives invoices related to the invoice unit.
name
Type:
string
A unique name that is distinctive within your AWS .
rule
Type:
IResolvable | Rule
An InvoiceUnitRule object used the categorize invoice units.
description?
Type:
string
(optional)
The assigned description for an invoice unit.
This information can't be modified or deleted.
resourceTags?
Type:
Resource[]
(optional)
The tag structure that contains a tag key and value.
taxInheritanceDisabled?
Type:
boolean | IResolvable
(optional)
Whether the invoice unit based tax inheritance is/ should be enabled or disabled.
