Class: Aws::CloudWatchRUM::Types::UserDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchRUM::Types::UserDetails
- Defined in:
- gems/aws-sdk-cloudwatchrum/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.
1923 1924 1925 1926 1927 1928 |
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1923 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.
1923 1924 1925 1926 1927 1928 |
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1923 class UserDetails < Struct.new( :session_id, :user_id) SENSITIVE = [] include Aws::Structure end |