interface AttributeDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnCalculatedAttributeDefinitionPropsMixin.AttributeDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnCalculatedAttributeDefinitionPropsMixin_AttributeDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnCalculatedAttributeDefinitionPropsMixin.AttributeDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnCalculatedAttributeDefinitionPropsMixin.AttributeDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » CfnCalculatedAttributeDefinitionPropsMixin » 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/cfn-property-mixins';
const attributeDetailsProperty: customerprofiles.CfnCalculatedAttributeDefinitionPropsMixin.AttributeDetailsProperty = {
attributes: [{
name: 'name',
}],
expression: 'expression',
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | IResolvable | (IResolvable | Attribute)[] | Mathematical expression and a list of attribute items specified in that expression. |
| expression? | string | Mathematical expression that is performed on attribute items provided in the attribute list. |
attributes?
Type:
IResolvable | (IResolvable | Attribute)[]
(optional)
Mathematical expression and a list of attribute items specified in that expression.
expression?
Type:
string
(optional)
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}".

.NET
Go
Java
Python
TypeScript