CfnInvoiceUnitMixinProps

class aws_cdk.mixins_preview.aws_invoicing.mixins.CfnInvoiceUnitMixinProps(*, description=None, invoice_receiver=None, name=None, resource_tags=None, rule=None, tax_inheritance_disabled=None)

Bases: object

Properties for CfnInvoiceUnitPropsMixin.

Parameters:
  • description (Optional[str]) – The assigned description for an invoice unit. This information can’t be modified or deleted.

  • invoice_receiver (Optional[str]) – The account that receives invoices related to the invoice unit.

  • name (Optional[str]) – A unique name that is distinctive within your AWS .

  • resource_tags (Optional[Sequence[Union[ResourceTagProperty, Dict[str, Any]]]]) – The tag structure that contains a tag key and value.

  • rule (Union[IResolvable, RuleProperty, Dict[str, Any], None]) – An InvoiceUnitRule object used the categorize invoice units.

  • tax_inheritance_disabled (Union[bool, IResolvable, None]) – Whether the invoice unit based tax inheritance is/ should be enabled or disabled.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_invoicing import mixins as invoicing_mixins

cfn_invoice_unit_mixin_props = invoicing_mixins.CfnInvoiceUnitMixinProps(
    description="description",
    invoice_receiver="invoiceReceiver",
    name="name",
    resource_tags=[invoicing_mixins.CfnInvoiceUnitPropsMixin.ResourceTagProperty(
        key="key",
        value="value"
    )],
    rule=invoicing_mixins.CfnInvoiceUnitPropsMixin.RuleProperty(
        linked_accounts=["linkedAccounts"]
    ),
    tax_inheritance_disabled=False
)

Attributes

description

The assigned description for an invoice unit.

This information can’t be modified or deleted.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-description

invoice_receiver

The account that receives invoices related to the invoice unit.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-invoicereceiver

name

A unique name that is distinctive within your AWS .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-name

resource_tags

The tag structure that contains a tag key and value.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-resourcetags

rule

An InvoiceUnitRule object used the categorize invoice units.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-rule

tax_inheritance_disabled

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

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-invoicing-invoiceunit.html#cfn-invoicing-invoiceunit-taxinheritancedisabled