Class: Aws::CustomerProfiles::Types::EventParameters

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

Overview

Configuration parameters for events in the personalization system.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#event_typeString

The type of event being tracked (e.g., 'click', 'purchase', 'view').

Returns:

  • (String)


2745
2746
2747
2748
2749
2750
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 2745

class EventParameters < Struct.new(
  :event_type,
  :event_value_threshold)
  SENSITIVE = []
  include Aws::Structure
end

#event_value_thresholdFloat

The minimum value threshold that an event must meet to be considered valid.

Returns:

  • (Float)


2745
2746
2747
2748
2749
2750
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 2745

class EventParameters < Struct.new(
  :event_type,
  :event_value_threshold)
  SENSITIVE = []
  include Aws::Structure
end