Interface CfnSegment.BehaviorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSegment.BehaviorProperty.Jsii$Proxy
Enclosing class:
CfnSegment

@Stability(Stable) public static interface CfnSegment.BehaviorProperty extends software.amazon.jsii.JsiiSerializable
Specifies behavior-based criteria for the segment, such as how recently users have used your app.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pinpoint.*;
 BehaviorProperty behaviorProperty = BehaviorProperty.builder()
         .recency(RecencyProperty.builder()
                 .duration("duration")
                 .recencyType("recencyType")
                 .build())
         .build();