Interface EndpointUser.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EndpointUser.Builder,EndpointUser>,SdkBuilder<EndpointUser.Builder,EndpointUser>,SdkPojo
- Enclosing class:
- EndpointUser
public static interface EndpointUser.Builder extends SdkPojo, CopyableBuilder<EndpointUser.Builder,EndpointUser>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EndpointUser.BuilderuserAttributes(Map<String,? extends Collection<String>> userAttributes)One or more custom attributes that describe the user by associating a name with an array of values.EndpointUser.BuilderuserId(String userId)The unique identifier for 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, sdkFields
-
-
-
-
Method Detail
-
userAttributes
EndpointUser.Builder userAttributes(Map<String,? extends Collection<String>> userAttributes)
One or more custom attributes that describe the user by associating a name with an array of values. For example, the value of an attribute named Interests might be: ["Science", "Music", "Travel"]. You can use these attributes as filter criteria when you create segments. Attribute names are case sensitive.
An attribute name can contain up to 50 characters. An attribute value can contain up to 100 characters. When you define the name of a custom attribute, avoid using the following characters: number sign (#), colon (:), question mark (?), backslash (\), and slash (/). The Amazon Pinpoint console can't display attribute names that contain these characters. This restriction doesn't apply to attribute values.
- Parameters:
userAttributes- One or more custom attributes that describe the user by associating a name with an array of values. For example, the value of an attribute named Interests might be: ["Science", "Music", "Travel"]. You can use these attributes as filter criteria when you create segments. Attribute names are case sensitive.An attribute name can contain up to 50 characters. An attribute value can contain up to 100 characters. When you define the name of a custom attribute, avoid using the following characters: number sign (#), colon (:), question mark (?), backslash (\), and slash (/). The Amazon Pinpoint console can't display attribute names that contain these characters. This restriction doesn't apply to attribute values.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userId
EndpointUser.Builder userId(String userId)
The unique identifier for the user.
- Parameters:
userId- The unique identifier for the user.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-