Class: Aws::CustomerProfiles::Types::EventParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::EventParameters
- 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
-
#event_type ⇒ String
The type of event being tracked (e.g., 'click', 'purchase', 'view').
-
#event_value_threshold ⇒ Float
The minimum value threshold that an event must meet to be considered valid.
-
#event_weight ⇒ Float
The weight of the event type.
Instance Attribute Details
#event_type ⇒ String
The type of event being tracked (e.g., 'click', 'purchase', 'view').
2832 2833 2834 2835 2836 2837 2838 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 2832 class EventParameters < Struct.new( :event_type, :event_value_threshold, :event_weight) SENSITIVE = [] include Aws::Structure end |
#event_value_threshold ⇒ Float
The minimum value threshold that an event must meet to be considered valid.
2832 2833 2834 2835 2836 2837 2838 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 2832 class EventParameters < Struct.new( :event_type, :event_value_threshold, :event_weight) SENSITIVE = [] include Aws::Structure end |
#event_weight ⇒ Float
The weight of the event type. A higher weight means higher importance of the event type for the created solution.
2832 2833 2834 2835 2836 2837 2838 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 2832 class EventParameters < Struct.new( :event_type, :event_value_threshold, :event_weight) SENSITIVE = [] include Aws::Structure end |