Interface CfnSegment.IRecencyProperty
Specifies how recently segment members were active.
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnSegment.IRecencyProperty
Syntax (vb)
Public Interface CfnSegment.IRecencyProperty
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.Pinpoint;
var recencyProperty = new RecencyProperty {
Duration = "duration",
RecencyType = "recencyType"
};
Synopsis
Properties
| Duration | The duration to use when determining which users have been active or inactive with your app. |
| RecencyType | The type of recency dimension to use for the segment. |
Properties
Duration
The duration to use when determining which users have been active or inactive with your app.
string Duration { get; }
Property Value
Remarks
Possible values: HR_24 | DAY_7 | DAY_14 | DAY_30 .
RecencyType
The type of recency dimension to use for the segment.
string RecencyType { get; }
Property Value
Remarks
Valid values are: ACTIVE and INACTIVE . If the value is ACTIVE , the segment includes users who have used your app within the specified duration are included in the segment. If the value is INACTIVE , the segment includes users who haven't used your app within the specified duration are included in the segment.