Class: Aws::CloudWatchRUM::Types::UserDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#session_idString

The session ID that the performance events are from.

Returns:

  • (String)


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_idString

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.

Returns:

  • (String)


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