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")
// the properties below are optional
.timestampFormat("timestampFormat")
.timestampSource("timestampSource")
.value(123)
.valueRange(ValueRangeProperty.builder()
.end(123)
.start(123)
.build())
.build())
.threshold(ThresholdProperty.builder()
.operator("operator")
.value("value")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCalculatedAttributeDefinition.ConditionsPropertystatic final classAn 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.Returns union: either
IResolvableorCfnCalculatedAttributeDefinition.RangeProperty- See Also:
-
getThreshold
The threshold for the calculated attribute.Returns union: either
IResolvableorCfnCalculatedAttributeDefinition.ThresholdProperty- See Also:
-
builder
-