Class: Aws::CloudWatchEvidently::Types::Event
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchEvidently::Types::Event
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchevidently/types.rb
Overview
A structure that contains the information about one evaluation event or custom event sent to Evidently. This is a JSON payload. If this event specifies a pre-defined event type, the payload must follow the defined event schema.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data ⇒ String
The event data.
-
#timestamp ⇒ Time
The timestamp of the event.
-
#type ⇒ String
‘aws.evidently.evaluation` specifies an evaluation event, which determines which feature variation that a user sees.
Instance Attribute Details
#data ⇒ String
The event data.
840 841 842 843 844 845 846 |
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 840 class Event < Struct.new( :data, :timestamp, :type) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Time
The timestamp of the event.
840 841 842 843 844 845 846 |
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 840 class Event < Struct.new( :data, :timestamp, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
‘aws.evidently.evaluation` specifies an evaluation event, which determines which feature variation that a user sees. `aws.evidently.custom` specifies a custom event, which generates metrics from user actions such as clicks and checkouts.
840 841 842 843 844 845 846 |
# File 'lib/aws-sdk-cloudwatchevidently/types.rb', line 840 class Event < Struct.new( :data, :timestamp, :type) SENSITIVE = [] include Aws::Structure end |