Interface CfnCalculatedAttributeDefinition.IConditionsProperty
The conditions including range, object count, and threshold for the calculated attribute.
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IConditionsProperty
Syntax (vb)
Public Interface IConditionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CustomerProfiles;
var conditionsProperty = new ConditionsProperty {
ObjectCount = 123,
Range = new RangeProperty {
Unit = "unit",
Value = 123
},
Threshold = new ThresholdProperty {
Operator = "operator",
Value = "value"
}
};
Synopsis
Properties
Object |
The number of profile objects used for the calculated attribute. |
Range | The relative time period over which data is included in the aggregation. |
Threshold | The threshold for the calculated attribute. |
Properties
ObjectCount
The number of profile objects used for the calculated attribute.
virtual Nullable<double> ObjectCount { get; }
Property Value
System.
Remarks
Range
The relative time period over which data is included in the aggregation.
virtual object Range { get; }
Property Value
System.
Remarks
Threshold
The threshold for the calculated attribute.
virtual object Threshold { get; }
Property Value
System.