Interface Contact.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Contact.Builder,Contact>,SdkBuilder<Contact.Builder,Contact>,SdkPojo
- Enclosing class:
- Contact
public static interface Contact.Builder extends SdkPojo, CopyableBuilder<Contact.Builder,Contact>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Contact.BuilderemailAddress(String emailAddress)The contact's email address.Contact.BuilderlastUpdatedTimestamp(Instant lastUpdatedTimestamp)A timestamp noting the last time the contact's information was updated.Contact.BuildertopicDefaultPreferences(Collection<TopicPreference> topicDefaultPreferences)The default topic preferences applied to the contact.Contact.BuildertopicDefaultPreferences(Consumer<TopicPreference.Builder>... topicDefaultPreferences)The default topic preferences applied to the contact.Contact.BuildertopicDefaultPreferences(TopicPreference... topicDefaultPreferences)The default topic preferences applied to the contact.Contact.BuildertopicPreferences(Collection<TopicPreference> topicPreferences)The contact's preference for being opted-in to or opted-out of a topic.Contact.BuildertopicPreferences(Consumer<TopicPreference.Builder>... topicPreferences)The contact's preference for being opted-in to or opted-out of a topic.Contact.BuildertopicPreferences(TopicPreference... topicPreferences)The contact's preference for being opted-in to or opted-out of a topic.Contact.BuilderunsubscribeAll(Boolean unsubscribeAll)A boolean value status noting if the contact is unsubscribed from all contact list topics.-
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
-
emailAddress
Contact.Builder emailAddress(String emailAddress)
The contact's email address.
- Parameters:
emailAddress- The contact's email address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topicPreferences
Contact.Builder topicPreferences(Collection<TopicPreference> topicPreferences)
The contact's preference for being opted-in to or opted-out of a topic.
- Parameters:
topicPreferences- The contact's preference for being opted-in to or opted-out of a topic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topicPreferences
Contact.Builder topicPreferences(TopicPreference... topicPreferences)
The contact's preference for being opted-in to or opted-out of a topic.
- Parameters:
topicPreferences- The contact's preference for being opted-in to or opted-out of a topic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topicPreferences
Contact.Builder topicPreferences(Consumer<TopicPreference.Builder>... topicPreferences)
The contact's preference for being opted-in to or opted-out of a topic.
This is a convenience method that creates an instance of theTopicPreference.Builderavoiding the need to create one manually viaTopicPreference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#topicPreferences(List.) - Parameters:
topicPreferences- a consumer that will call methods onTopicPreference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#topicPreferences(java.util.Collection)
-
topicDefaultPreferences
Contact.Builder topicDefaultPreferences(Collection<TopicPreference> topicDefaultPreferences)
The default topic preferences applied to the contact.
- Parameters:
topicDefaultPreferences- The default topic preferences applied to the contact.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topicDefaultPreferences
Contact.Builder topicDefaultPreferences(TopicPreference... topicDefaultPreferences)
The default topic preferences applied to the contact.
- Parameters:
topicDefaultPreferences- The default topic preferences applied to the contact.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topicDefaultPreferences
Contact.Builder topicDefaultPreferences(Consumer<TopicPreference.Builder>... topicDefaultPreferences)
The default topic preferences applied to the contact.
This is a convenience method that creates an instance of theTopicPreference.Builderavoiding the need to create one manually viaTopicPreference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#topicDefaultPreferences(List.) - Parameters:
topicDefaultPreferences- a consumer that will call methods onTopicPreference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#topicDefaultPreferences(java.util.Collection)
-
unsubscribeAll
Contact.Builder unsubscribeAll(Boolean unsubscribeAll)
A boolean value status noting if the contact is unsubscribed from all contact list topics.
- Parameters:
unsubscribeAll- A boolean value status noting if the contact is unsubscribed from all contact list topics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedTimestamp
Contact.Builder lastUpdatedTimestamp(Instant lastUpdatedTimestamp)
A timestamp noting the last time the contact's information was updated.
- Parameters:
lastUpdatedTimestamp- A timestamp noting the last time the contact's information was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-