Interface NotificationRecipientType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NotificationRecipientType.Builder,NotificationRecipientType>,SdkBuilder<NotificationRecipientType.Builder,NotificationRecipientType>,SdkPojo
- Enclosing class:
- NotificationRecipientType
public static interface NotificationRecipientType.Builder extends SdkPojo, CopyableBuilder<NotificationRecipientType.Builder,NotificationRecipientType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NotificationRecipientType.BuilderuserIds(String... userIds)A list of user IDs.NotificationRecipientType.BuilderuserIds(Collection<String> userIds)A list of user IDs.NotificationRecipientType.BuilderuserTags(Map<String,String> userTags)The tags used to organize, track, or control access for this resource.-
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
-
userTags
NotificationRecipientType.Builder userTags(Map<String,String> userTags)
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }. Amazon Connect users with the specified tags will be notified.
- Parameters:
userTags- The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }. Amazon Connect users with the specified tags will be notified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userIds
NotificationRecipientType.Builder userIds(Collection<String> userIds)
A list of user IDs.
- Parameters:
userIds- A list of user IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userIds
NotificationRecipientType.Builder userIds(String... userIds)
A list of user IDs.
- Parameters:
userIds- A list of user IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-