aws-cdk-lib.aws_customerprofiles.CfnCalculatedAttributeDefinition.AttributeDetailsProperty

interface AttributeDetailsProperty

LanguageType name
.NETAmazon.CDK.AWS.CustomerProfiles.CfnCalculatedAttributeDefinition.AttributeDetailsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnCalculatedAttributeDefinition_AttributeDetailsProperty
Javasoftware.amazon.awscdk.services.customerprofiles.CfnCalculatedAttributeDefinition.AttributeDetailsProperty
Pythonaws_cdk.aws_customerprofiles.CfnCalculatedAttributeDefinition.AttributeDetailsProperty
TypeScript aws-cdk-lib » aws_customerprofiles » CfnCalculatedAttributeDefinition » AttributeDetailsProperty

Mathematical expression and a list of attribute items specified in that expression.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const attributeDetailsProperty: customerprofiles.CfnCalculatedAttributeDefinition.AttributeDetailsProperty = {
  attributes: [{
    name: 'name',
  }],
  expression: 'expression',
};

Properties

NameTypeDescription
attributesIResolvable | IResolvable | AttributeItemProperty[]Mathematical expression and a list of attribute items specified in that expression.
expressionstringMathematical expression that is performed on attribute items provided in the attribute list.

attributes

Type: IResolvable | IResolvable | AttributeItemProperty[]

Mathematical expression and a list of attribute items specified in that expression.


expression

Type: string

Mathematical expression that is performed on attribute items provided in the attribute list.

Each element in the expression should follow the structure of "{ObjectTypeName.AttributeName}".