Interface UserDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserDetails.Builder,UserDetails>,SdkBuilder<UserDetails.Builder,UserDetails>,SdkPojo
- Enclosing class:
- UserDetails
public static interface UserDetails.Builder extends SdkPojo, CopyableBuilder<UserDetails.Builder,UserDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserDetails.BuildersessionId(String sessionId)The session ID that the performance events are from.UserDetails.BuilderuserId(String userId)The ID of the user for this user session.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
sessionId
UserDetails.Builder sessionId(String sessionId)
The session ID that the performance events are from.
- Parameters:
sessionId- The session ID that the performance events are from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userId
UserDetails.Builder userId(String userId)
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.
- Parameters:
userId- 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:
- Returns a reference to this object so that method calls can be chained together.
-
-