Interface ListIpSetsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListIpSetsResponse.Builder,ListIpSetsResponse>,SdkBuilder<ListIpSetsResponse.Builder,ListIpSetsResponse>,SdkPojo,SdkResponse.Builder,WafResponse.Builder
- Enclosing class:
- ListIpSetsResponse
public static interface ListIpSetsResponse.Builder extends WafResponse.Builder, SdkPojo, CopyableBuilder<ListIpSetsResponse.Builder,ListIpSetsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListIpSetsResponse.BuilderipSets(Collection<IPSetSummary> ipSets)An array of IPSetSummary objects.ListIpSetsResponse.BuilderipSets(Consumer<IPSetSummary.Builder>... ipSets)An array of IPSetSummary objects.ListIpSetsResponse.BuilderipSets(IPSetSummary... ipSets)An array of IPSetSummary objects.ListIpSetsResponse.BuildernextMarker(String nextMarker)To list moreIPSetobjects, submit anotherListIPSetsrequest, and in the next request use theNextMarkerresponse value as theNextMarkervalue.-
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.waf.model.WafResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
nextMarker
ListIpSetsResponse.Builder nextMarker(String nextMarker)
To list more
IPSetobjects, submit anotherListIPSetsrequest, and in the next request use theNextMarkerresponse value as theNextMarkervalue.- Parameters:
nextMarker- To list moreIPSetobjects, submit anotherListIPSetsrequest, and in the next request use theNextMarkerresponse value as theNextMarkervalue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipSets
ListIpSetsResponse.Builder ipSets(Collection<IPSetSummary> ipSets)
An array of IPSetSummary objects.
- Parameters:
ipSets- An array of IPSetSummary objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipSets
ListIpSetsResponse.Builder ipSets(IPSetSummary... ipSets)
An array of IPSetSummary objects.
- Parameters:
ipSets- An array of IPSetSummary objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ipSets
ListIpSetsResponse.Builder ipSets(Consumer<IPSetSummary.Builder>... ipSets)
An array of IPSetSummary objects.
This is a convenience method that creates an instance of theIPSetSummary.Builderavoiding the need to create one manually viaIPSetSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#ipSets(List.) - Parameters:
ipSets- a consumer that will call methods onIPSetSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#ipSets(java.util.Collection)
-
-