Class: Aws::CustomerProfiles::Types::RangeOverride

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

Overview

Overrides the original range on a calculated attribute definition.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#endInteger

The end time of when to include objects.

Returns:

  • (Integer)


6212
6213
6214
6215
6216
6217
6218
# File 'lib/aws-sdk-customerprofiles/types.rb', line 6212

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

#startInteger

The start time of when to include objects.

Returns:

  • (Integer)


6212
6213
6214
6215
6216
6217
6218
# File 'lib/aws-sdk-customerprofiles/types.rb', line 6212

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

#unitString

The unit for start and end.

Returns:

  • (String)


6212
6213
6214
6215
6216
6217
6218
# File 'lib/aws-sdk-customerprofiles/types.rb', line 6212

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