Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-recency.html

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

string

Remarks

Possible values: HR_24 | DAY_7 | DAY_14 | DAY_30 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-recency.html#cfn-pinpoint-segment-recency-duration

RecencyType

The type of recency dimension to use for the segment.

string RecencyType { get; }
Property Value

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pinpoint-segment-recency.html#cfn-pinpoint-segment-recency-recencytype

Back to top Generated by DocFX