Interface User.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<User.Builder,User>,SdkBuilder<User.Builder,User>,SdkPojo
- Enclosing class:
- User
public static interface User.Builder extends SdkPojo, CopyableBuilder<User.Builder,User>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description User.Builderproperties(String properties)A string map of user-specific metadata.User.BuilderuserId(String userId)The ID associated with the user.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
userId
User.Builder userId(String userId)
The ID associated with the user.
- Parameters:
userId- The ID associated with the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
properties
User.Builder properties(String properties)
A string map of user-specific metadata. Each element in the map consists of a key-value pair. For example,
{"numberOfVideosWatched": "45"}.The keys use camel case names that match the fields in the schema for the Users dataset. In the previous example, the
numberOfVideosWatchedmatches the 'NUMBER_OF_VIDEOS_WATCHED' field defined in the Users schema. For categorical string data, to include multiple categories for a single user, separate each category with a pipe separator (|). For example,\"Member|Frequent shopper\".- Parameters:
properties- A string map of user-specific metadata. Each element in the map consists of a key-value pair. For example,{"numberOfVideosWatched": "45"}.The keys use camel case names that match the fields in the schema for the Users dataset. In the previous example, the
numberOfVideosWatchedmatches the 'NUMBER_OF_VIDEOS_WATCHED' field defined in the Users schema. For categorical string data, to include multiple categories for a single user, separate each category with a pipe separator (|). For example,\"Member|Frequent shopper\".- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-