CalculatedAttributeDefinitionReference

class aws_cdk.aws_customerprofiles.CalculatedAttributeDefinitionReference(*, calculated_attribute_name, domain_name)

Bases: object

A reference to a CalculatedAttributeDefinition resource.

Parameters:
  • calculated_attribute_name (str) – The CalculatedAttributeName of the CalculatedAttributeDefinition resource.

  • domain_name (str) – The DomainName of the CalculatedAttributeDefinition resource.

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_customerprofiles as customerprofiles

calculated_attribute_definition_reference = customerprofiles.CalculatedAttributeDefinitionReference(
    calculated_attribute_name="calculatedAttributeName",
    domain_name="domainName"
)

Attributes

calculated_attribute_name

The CalculatedAttributeName of the CalculatedAttributeDefinition resource.

domain_name

The DomainName of the CalculatedAttributeDefinition resource.