CfnInvoiceUnitProps

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

Bases: object

Properties for defining a CfnInvoiceUnit.

Parameters:
  • invoice_receiver (str) –

  • name (str) –

  • rule (Union[IResolvable, RuleProperty, Dict[str, Any]]) –

  • description (Optional[str]) –

  • resource_tags (Optional[Sequence[Union[ResourceTagProperty, Dict[str, Any]]]]) –

  • tax_inheritance_disabled (Union[bool, IResolvable, None]) –

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 import aws_invoicing as invoicing

cfn_invoice_unit_props = invoicing.CfnInvoiceUnitProps(
    invoice_receiver="invoiceReceiver",
    name="name",
    rule=invoicing.CfnInvoiceUnit.RuleProperty(
        linked_accounts=["linkedAccounts"]
    ),

    # the properties below are optional
    description="description",
    resource_tags=[invoicing.CfnInvoiceUnit.ResourceTagProperty(
        key="key",
        value="value"
    )],
    tax_inheritance_disabled=False
)

Attributes

description

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

Type:

see

invoice_receiver

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

Type:

see

name

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

Type:

see

resource_tags

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

Type:

see

rule

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

Type:

see

tax_inheritance_disabled

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

Type:

see