Interface CfnCalculatedAttributeDefinition.ConditionsProperty

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

@Stability(Stable) public static interface CfnCalculatedAttributeDefinition.ConditionsProperty extends software.amazon.jsii.JsiiSerializable
The conditions including range, object count, and threshold for the calculated attribute.

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.*;
 ConditionsProperty conditionsProperty = ConditionsProperty.builder()
         .objectCount(123)
         .range(RangeProperty.builder()
                 .unit("unit")
                 .value(123)
                 .build())
         .threshold(ThresholdProperty.builder()
                 .operator("operator")
                 .value("value")
                 .build())
         .build();
 

See Also: