Show / Hide Table of Contents

Class CfnSegment.RecencyProperty

Specifies how recently segment members were active.

Inheritance
object
CfnSegment.RecencyProperty
Implements
CfnSegment.IRecencyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSegment.RecencyProperty : CfnSegment.IRecencyProperty
Syntax (vb)
Public Class CfnSegment.RecencyProperty Implements 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

Constructors

RecencyProperty()

Specifies how recently segment members were active.

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.

Constructors

RecencyProperty()

Specifies how recently segment members were active.

public RecencyProperty()
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"
             };

Properties

Duration

The duration to use when determining which users have been active or inactive with your app.

public string Duration { get; set; }
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.

public string RecencyType { get; set; }
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

Implements

CfnSegment.IRecencyProperty
Back to top Generated by DocFX