Class: Aws::Pinpoint::Types::RecencyDimension
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Pinpoint::Types::RecencyDimension
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpoint/types.rb
 
Overview
Specifies criteria for including or excluding endpoints from a segment based on how recently an endpoint was active.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #duration  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The duration to use when determining whether an endpoint is active or inactive.
 - 
  
    
      #recency_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of recency dimension to use for the segment.
 
Instance Attribute Details
#duration ⇒ String
The duration to use when determining whether an endpoint is active or inactive.
      10370 10371 10372 10373 10374 10375  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 10370 class RecencyDimension < Struct.new( :duration, :recency_type) SENSITIVE = [] include Aws::Structure end  | 
  
#recency_type ⇒ String
The type of recency dimension to use for the segment. Valid values are: ACTIVE, endpoints that were active within the specified duration are included in the segment; and, INACTIVE, endpoints that weren’t active within the specified duration are included in the segment.
      10370 10371 10372 10373 10374 10375  | 
    
      # File 'lib/aws-sdk-pinpoint/types.rb', line 10370 class RecencyDimension < Struct.new( :duration, :recency_type) SENSITIVE = [] include Aws::Structure end  |