Interface ListByteMatchSetsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListByteMatchSetsResponse.Builder,ListByteMatchSetsResponse>,SdkBuilder<ListByteMatchSetsResponse.Builder,ListByteMatchSetsResponse>,SdkPojo,SdkResponse.Builder,WafResponse.Builder
- Enclosing class:
- ListByteMatchSetsResponse
public static interface ListByteMatchSetsResponse.Builder extends WafResponse.Builder, SdkPojo, CopyableBuilder<ListByteMatchSetsResponse.Builder,ListByteMatchSetsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListByteMatchSetsResponse.BuilderbyteMatchSets(Collection<ByteMatchSetSummary> byteMatchSets)An array of ByteMatchSetSummary objects.ListByteMatchSetsResponse.BuilderbyteMatchSets(Consumer<ByteMatchSetSummary.Builder>... byteMatchSets)An array of ByteMatchSetSummary objects.ListByteMatchSetsResponse.BuilderbyteMatchSets(ByteMatchSetSummary... byteMatchSets)An array of ByteMatchSetSummary objects.ListByteMatchSetsResponse.BuildernextMarker(String nextMarker)If you have moreByteMatchSetobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue.-
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
ListByteMatchSetsResponse.Builder nextMarker(String nextMarker)
If you have more
ByteMatchSetobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreByteMatchSetobjects, submit anotherListByteMatchSetsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.- Parameters:
nextMarker- If you have moreByteMatchSetobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreByteMatchSetobjects, submit anotherListByteMatchSetsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
byteMatchSets
ListByteMatchSetsResponse.Builder byteMatchSets(Collection<ByteMatchSetSummary> byteMatchSets)
An array of ByteMatchSetSummary objects.
- Parameters:
byteMatchSets- An array of ByteMatchSetSummary objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
byteMatchSets
ListByteMatchSetsResponse.Builder byteMatchSets(ByteMatchSetSummary... byteMatchSets)
An array of ByteMatchSetSummary objects.
- Parameters:
byteMatchSets- An array of ByteMatchSetSummary objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
byteMatchSets
ListByteMatchSetsResponse.Builder byteMatchSets(Consumer<ByteMatchSetSummary.Builder>... byteMatchSets)
An array of ByteMatchSetSummary objects.
This is a convenience method that creates an instance of theByteMatchSetSummary.Builderavoiding the need to create one manually viaByteMatchSetSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#byteMatchSets(List.) - Parameters:
byteMatchSets- a consumer that will call methods onByteMatchSetSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#byteMatchSets(java.util.Collection)
-
-