Interface CfnCalculatedAttributeDefinition.AttributeDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCalculatedAttributeDefinition.AttributeDetailsProperty.Jsii$Proxy
Enclosing class:
CfnCalculatedAttributeDefinition

@Stability(Stable) public static interface CfnCalculatedAttributeDefinition.AttributeDetailsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.customerprofiles.*;
 AttributeDetailsProperty attributeDetailsProperty = AttributeDetailsProperty.builder()
         .attributes(List.of(AttributeItemProperty.builder()
                 .name("name")
                 .build()))
         .expression("expression")
         .build();
 

See Also: