interface CalculatedAttributeDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CustomerProfiles.CalculatedAttributeDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscustomerprofiles#CalculatedAttributeDefinitionReference |
Java | software.amazon.awscdk.interfaces.customerprofiles.CalculatedAttributeDefinitionReference |
Python | aws_cdk.interfaces.aws_customerprofiles.CalculatedAttributeDefinitionReference |
TypeScript | aws-cdk-lib » interfaces » aws_customerprofiles » CalculatedAttributeDefinitionReference |
A reference to a CalculatedAttributeDefinition resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as interfaces_aws_customerprofiles } from 'aws-cdk-lib/interfaces';
const calculatedAttributeDefinitionReference: interfaces_aws_customerprofiles.CalculatedAttributeDefinitionReference = {
calculatedAttributeName: 'calculatedAttributeName',
domainName: 'domainName',
};
Properties
| Name | Type | Description |
|---|---|---|
| calculated | string | The CalculatedAttributeName of the CalculatedAttributeDefinition resource. |
| domain | string | The DomainName of the CalculatedAttributeDefinition resource. |
calculatedAttributeName
Type:
string
The CalculatedAttributeName of the CalculatedAttributeDefinition resource.
domainName
Type:
string
The DomainName of the CalculatedAttributeDefinition resource.

.NET
Go
Java
Python
TypeScript