Interface UpdateContactListRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateContactListRequest.Builder,UpdateContactListRequest>,SdkBuilder<UpdateContactListRequest.Builder,UpdateContactListRequest>,SdkPojo,SdkRequest.Builder,SesV2Request.Builder
- Enclosing class:
- UpdateContactListRequest
public static interface UpdateContactListRequest.Builder extends SesV2Request.Builder, SdkPojo, CopyableBuilder<UpdateContactListRequest.Builder,UpdateContactListRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateContactListRequest.BuildercontactListName(String contactListName)The name of the contact list.UpdateContactListRequest.Builderdescription(String description)A description of what the contact list is about.UpdateContactListRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateContactListRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateContactListRequest.Buildertopics(Collection<Topic> topics)An interest group, theme, or label within a list.UpdateContactListRequest.Buildertopics(Consumer<Topic.Builder>... topics)An interest group, theme, or label within a list.UpdateContactListRequest.Buildertopics(Topic... topics)An interest group, theme, or label within a list.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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.services.sesv2.model.SesV2Request.Builder
build
-
-
-
-
Method Detail
-
contactListName
UpdateContactListRequest.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
UpdateContactListRequest.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
UpdateContactListRequest.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
UpdateContactListRequest.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
UpdateContactListRequest.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.
-
overrideConfiguration
UpdateContactListRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateContactListRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-