Class: Aws::Pinpoint::Types::RecencyDimension

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pinpoint/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

Instance Attribute Details

#durationString

The duration to use when determining whether an endpoint is active or inactive.

Returns:

  • (String)


10338
10339
10340
10341
10342
10343
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 10338

class RecencyDimension < Struct.new(
  :duration,
  :recency_type)
  SENSITIVE = []
  include Aws::Structure
end

#recency_typeString

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.

Returns:

  • (String)


10338
10339
10340
10341
10342
10343
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 10338

class RecencyDimension < Struct.new(
  :duration,
  :recency_type)
  SENSITIVE = []
  include Aws::Structure
end