Interface CfnSegmentDefinition.IRangeOverrideProperty
Overrides the original range on a calculated attribute definition.
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnSegmentDefinition.IRangeOverrideProperty
Syntax (vb)
Public Interface CfnSegmentDefinition.IRangeOverrideProperty
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 rangeOverrideProperty = new RangeOverrideProperty {
Start = 123,
Unit = "unit",
// the properties below are optional
End = 123
};
Synopsis
Properties
| End | The end time of when to include objects. |
| Start | The start time of when to include objects. |
| Unit | The unit for start and end. |
Properties
End
The end time of when to include objects.
double? End { get; }
Property Value
Remarks
Start
The start time of when to include objects.
double Start { get; }
Property Value
Remarks
Unit
The unit for start and end.
string Unit { get; }