interface AttributeDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnCalculatedAttributeDefinitionPropsMixin.AttributeDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnCalculatedAttributeDefinitionPropsMixin_AttributeDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.AttributeDetailsProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnCalculatedAttributeDefinitionPropsMixin.AttributeDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const attributeDetailsProperty: customerprofiles_mixins.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