Interface ListConfigurationSetsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListConfigurationSetsResponse.Builder,ListConfigurationSetsResponse>,SdkBuilder<ListConfigurationSetsResponse.Builder,ListConfigurationSetsResponse>,SdkPojo,SdkResponse.Builder,SesResponse.Builder
- Enclosing class:
- ListConfigurationSetsResponse
public static interface ListConfigurationSetsResponse.Builder extends SesResponse.Builder, SdkPojo, CopyableBuilder<ListConfigurationSetsResponse.Builder,ListConfigurationSetsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListConfigurationSetsResponse.BuilderconfigurationSets(Collection<ConfigurationSet> configurationSets)A list of configuration sets.ListConfigurationSetsResponse.BuilderconfigurationSets(Consumer<ConfigurationSet.Builder>... configurationSets)A list of configuration sets.ListConfigurationSetsResponse.BuilderconfigurationSets(ConfigurationSet... configurationSets)A list of configuration sets.ListConfigurationSetsResponse.BuildernextToken(String nextToken)A token indicating that there are additional configuration sets available to be listed.-
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.ses.model.SesResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
configurationSets
ListConfigurationSetsResponse.Builder configurationSets(Collection<ConfigurationSet> configurationSets)
A list of configuration sets.
- Parameters:
configurationSets- A list of configuration sets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationSets
ListConfigurationSetsResponse.Builder configurationSets(ConfigurationSet... configurationSets)
A list of configuration sets.
- Parameters:
configurationSets- A list of configuration sets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configurationSets
ListConfigurationSetsResponse.Builder configurationSets(Consumer<ConfigurationSet.Builder>... configurationSets)
A list of configuration sets.
This is a convenience method that creates an instance of theConfigurationSet.Builderavoiding the need to create one manually viaConfigurationSet.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#configurationSets(List.) - Parameters:
configurationSets- a consumer that will call methods onConfigurationSet.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#configurationSets(java.util.Collection)
-
nextToken
ListConfigurationSetsResponse.Builder nextToken(String nextToken)
A token indicating that there are additional configuration sets available to be listed. Pass this token to successive calls of
ListConfigurationSets.- Parameters:
nextToken- A token indicating that there are additional configuration sets available to be listed. Pass this token to successive calls ofListConfigurationSets.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-