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:
objectProperties 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]) – AnInvoiceUnitRuleobject 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:
- 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.
- invoice_receiver
The account that receives invoices related to the invoice unit.
- name
A unique name that is distinctive within your AWS .
- resource_tags
The tag structure that contains a tag key and value.
- rule
An
InvoiceUnitRuleobject used the categorize invoice units.
- tax_inheritance_disabled
Whether the invoice unit based tax inheritance is/ should be enabled or disabled.