Class CfnSegmentDefinition.RangeOverrideProperty
Overrides the original range on a calculated attribute definition.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSegmentDefinition.RangeOverrideProperty : CfnSegmentDefinition.IRangeOverrideProperty
Syntax (vb)
Public Class CfnSegmentDefinition.RangeOverrideProperty Implements 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
Constructors
RangeOverrideProperty() | Overrides the original range on a calculated attribute definition. |
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. |
Constructors
RangeOverrideProperty()
Overrides the original range on a calculated attribute definition.
public RangeOverrideProperty()
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
};
Properties
End
The end time of when to include objects.
public double? End { get; set; }
Property Value
Remarks
Start
The start time of when to include objects.
public double Start { get; set; }
Property Value
Remarks
Unit
The unit for start and end.
public string Unit { get; set; }