Class: Aws::Pinpoint::Types::SegmentBehaviors
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::SegmentBehaviors
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass SegmentBehaviors data as a hash:
{
recency: {
duration: "HR_24", # required, accepts HR_24, DAY_7, DAY_14, DAY_30
recency_type: "ACTIVE", # required, accepts ACTIVE, INACTIVE
},
}
Specifies dimension settings for including or excluding endpoints from a segment based on how recently an endpoint was active.
Instance Attribute Summary collapse
-
#recency ⇒ Types::RecencyDimension
The dimension settings that are based on how recently an endpoint was active.
Instance Attribute Details
#recency ⇒ Types::RecencyDimension
The dimension settings that are based on how recently an endpoint was active.
12910 12911 12912 12913 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 12910 class SegmentBehaviors < Struct.new( :recency) include Aws::Structure end |