Class: Aws::CloudWatchRUM::Types::RumEvent
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchRUM::Types::RumEvent
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchrum/types.rb
Overview
A structure that contains the information for one performance event that RUM collects from a user session with your application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#details ⇒ String
A string containing details about the event.
-
#id ⇒ String
A unique ID for this event.
-
#metadata ⇒ String
Metadata about this event, which contains a JSON serialization of the identity of the user for this session.
-
#timestamp ⇒ Time
The exact time that this event occurred.
-
#type ⇒ String
The JSON schema that denotes the type of event this is, such as a page load or a new session.
Instance Attribute Details
#details ⇒ String
A string containing details about the event.
1493 1494 1495 1496 1497 1498 1499 1500 1501 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 1493 class RumEvent < Struct.new( :details, :id, :metadata, :timestamp, :type) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
A unique ID for this event.
1493 1494 1495 1496 1497 1498 1499 1500 1501 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 1493 class RumEvent < Struct.new( :details, :id, :metadata, :timestamp, :type) SENSITIVE = [] include Aws::Structure end |
#metadata ⇒ String
Metadata about this event, which contains a JSON serialization of the identity of the user for this session. The user information comes from information such as the HTTP user-agent request header and document interface.
1493 1494 1495 1496 1497 1498 1499 1500 1501 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 1493 class RumEvent < Struct.new( :details, :id, :metadata, :timestamp, :type) SENSITIVE = [] include Aws::Structure end |
#timestamp ⇒ Time
The exact time that this event occurred.
1493 1494 1495 1496 1497 1498 1499 1500 1501 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 1493 class RumEvent < Struct.new( :details, :id, :metadata, :timestamp, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The JSON schema that denotes the type of event this is, such as a page load or a new session.
1493 1494 1495 1496 1497 1498 1499 1500 1501 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 1493 class RumEvent < Struct.new( :details, :id, :metadata, :timestamp, :type) SENSITIVE = [] include Aws::Structure end |