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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCalculatedAttributeDefinition.ConditionsProperty
static final class
An implementation forCfnCalculatedAttributeDefinition.ConditionsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getObjectCount
The number of profile objects used for the calculated attribute.- See Also:
-
getRange
The relative time period over which data is included in the aggregation.- See Also:
-
getThreshold
The threshold for the calculated attribute.- See Also:
-
builder
-