Interface GetContactListResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetContactListResponse.Builder,GetContactListResponse>,SdkBuilder<GetContactListResponse.Builder,GetContactListResponse>,SdkPojo,SdkResponse.Builder,SesV2Response.Builder
- Enclosing class:
- GetContactListResponse
public static interface GetContactListResponse.Builder extends SesV2Response.Builder, SdkPojo, CopyableBuilder<GetContactListResponse.Builder,GetContactListResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetContactListResponse.BuildercontactListName(String contactListName)The name of the contact list.GetContactListResponse.BuildercreatedTimestamp(Instant createdTimestamp)A timestamp noting when the contact list was created.GetContactListResponse.Builderdescription(String description)A description of what the contact list is about.GetContactListResponse.BuilderlastUpdatedTimestamp(Instant lastUpdatedTimestamp)A timestamp noting the last time the contact list was updated.GetContactListResponse.Buildertags(Collection<Tag> tags)The tags associated with a contact list.GetContactListResponse.Buildertags(Consumer<Tag.Builder>... tags)The tags associated with a contact list.GetContactListResponse.Buildertags(Tag... tags)The tags associated with a contact list.GetContactListResponse.Buildertopics(Collection<Topic> topics)An interest group, theme, or label within a list.GetContactListResponse.Buildertopics(Consumer<Topic.Builder>... topics)An interest group, theme, or label within a list.GetContactListResponse.Buildertopics(Topic... topics)An interest group, theme, or label within a list.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.sesv2.model.SesV2Response.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
contactListName
GetContactListResponse.Builder contactListName(String contactListName)
The name of the contact list.
- Parameters:
contactListName- The name of the contact list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topics
GetContactListResponse.Builder topics(Collection<Topic> topics)
An interest group, theme, or label within a list. A contact list can have multiple topics.
- Parameters:
topics- An interest group, theme, or label within a list. A contact list can have multiple topics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topics
GetContactListResponse.Builder topics(Topic... topics)
An interest group, theme, or label within a list. A contact list can have multiple topics.
- Parameters:
topics- An interest group, theme, or label within a list. A contact list can have multiple topics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topics
GetContactListResponse.Builder topics(Consumer<Topic.Builder>... topics)
An interest group, theme, or label within a list. A contact list can have multiple topics.
This is a convenience method that creates an instance of theTopic.Builderavoiding the need to create one manually viaTopic.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#topics(List.) - Parameters:
topics- a consumer that will call methods onTopic.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#topics(java.util.Collection)
-
description
GetContactListResponse.Builder description(String description)
A description of what the contact list is about.
- Parameters:
description- A description of what the contact list is about.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTimestamp
GetContactListResponse.Builder createdTimestamp(Instant createdTimestamp)
A timestamp noting when the contact list was created.
- Parameters:
createdTimestamp- A timestamp noting when the contact list was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedTimestamp
GetContactListResponse.Builder lastUpdatedTimestamp(Instant lastUpdatedTimestamp)
A timestamp noting the last time the contact list was updated.
- Parameters:
lastUpdatedTimestamp- A timestamp noting the last time the contact list was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
GetContactListResponse.Builder tags(Collection<Tag> tags)
The tags associated with a contact list.
- Parameters:
tags- The tags associated with a contact list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
GetContactListResponse.Builder tags(Tag... tags)
The tags associated with a contact list.
- Parameters:
tags- The tags associated with a contact list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
GetContactListResponse.Builder tags(Consumer<Tag.Builder>... tags)
The tags associated with a contact list.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-