Class: Aws::CustomerProfiles::Types::ValueRange

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb

Overview

A structure letting customers specify a relative time window over which over which data is included in the Calculated Attribute. Use positive numbers to indicate that the endpoint is in the past, and negative numbers to indicate it is in the future. ValueRange overrides Value.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#endInteger

The end time of when to include objects. Use positive numbers to indicate that the starting point is in the past, and negative numbers to indicate it is in the future.

Returns:

  • (Integer)


10973
10974
10975
10976
10977
10978
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 10973

class ValueRange < Struct.new(
  :start,
  :end)
  SENSITIVE = []
  include Aws::Structure
end

#startInteger

The start time of when to include objects. Use positive numbers to indicate that the starting point is in the past, and negative numbers to indicate it is in the future.

Returns:

  • (Integer)


10973
10974
10975
10976
10977
10978
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 10973

class ValueRange < Struct.new(
  :start,
  :end)
  SENSITIVE = []
  include Aws::Structure
end