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:
- 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
-
- Type:
see
- invoice_receiver
-
- Type:
see
- name
-
- Type:
see
- resource_tags
-
- Type:
see
- rule
-
- Type:
see