Class CfnSegmentDefinition.ConditionOverridesProperty
An object to override the original condition block of a calculated attribute.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSegmentDefinition.ConditionOverridesProperty : CfnSegmentDefinition.IConditionOverridesProperty
Syntax (vb)
Public Class CfnSegmentDefinition.ConditionOverridesProperty Implements CfnSegmentDefinition.IConditionOverridesProperty
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 conditionOverridesProperty = new ConditionOverridesProperty {
Range = new RangeOverrideProperty {
Start = 123,
Unit = "unit",
// the properties below are optional
End = 123
}
};
Synopsis
Constructors
ConditionOverridesProperty() | An object to override the original condition block of a calculated attribute. |
Properties
Range | The relative time period over which data is included in the aggregation for this override. |
Constructors
ConditionOverridesProperty()
An object to override the original condition block of a calculated attribute.
public ConditionOverridesProperty()
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 conditionOverridesProperty = new ConditionOverridesProperty {
Range = new RangeOverrideProperty {
Start = 123,
Unit = "unit",
// the properties below are optional
End = 123
}
};
Properties
Range
The relative time period over which data is included in the aggregation for this override.
public object? Range { get; set; }