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

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

Instance Attribute Details

#session_idString

The session ID that the performance events are from.

Returns:

  • (String)


1737
1738
1739
1740
1741
1742
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1737

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)


1737
1738
1739
1740
1741
1742
# File 'gems/aws-sdk-cloudwatchrum/lib/aws-sdk-cloudwatchrum/types.rb', line 1737

class UserDetails < Struct.new(
  :session_id,
  :user_id)
  SENSITIVE = []
  include Aws::Structure
end