Class: Aws::CloudWatchRUM::Types::UserDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchRUM::Types::UserDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchrum/types.rb
Overview
A structure that contains information about the user session that this batch of events was collected from.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#session_id ⇒ String
The session ID that the performance events are from.
-
#user_id ⇒ String
The ID of the user for this user session.
Instance Attribute Details
#session_id ⇒ String
The session ID that the performance events are from.
1735 1736 1737 1738 1739 1740 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 1735 class UserDetails < Struct.new( :session_id, :user_id) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The ID of the user for this user session. This ID is generated by RUM and does not include any personally identifiable information about the user.
1735 1736 1737 1738 1739 1740 |
# File 'lib/aws-sdk-cloudwatchrum/types.rb', line 1735 class UserDetails < Struct.new( :session_id, :user_id) SENSITIVE = [] include Aws::Structure end |