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
Modifier and TypeMethodDescriptionbyteMatchSets
(Collection<ByteMatchSetSummary> byteMatchSets) An array of ByteMatchSetSummary objects.byteMatchSets
(Consumer<ByteMatchSetSummary.Builder>... byteMatchSets) An array of ByteMatchSetSummary objects.byteMatchSets
(ByteMatchSetSummary... byteMatchSets) An array of ByteMatchSetSummary objects.nextMarker
(String nextMarker) If you have moreByteMatchSet
objects than the number that you specified forLimit
in the request, the response includes aNextMarker
value.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 Details
-
nextMarker
If you have more
ByteMatchSet
objects than the number that you specified forLimit
in the request, the response includes aNextMarker
value. To list moreByteMatchSet
objects, submit anotherListByteMatchSets
request, and specify theNextMarker
value from the response in theNextMarker
value in the next request.- Parameters:
nextMarker
- If you have moreByteMatchSet
objects than the number that you specified forLimit
in the request, the response includes aNextMarker
value. To list moreByteMatchSet
objects, submit anotherListByteMatchSets
request, and specify theNextMarker
value from the response in theNextMarker
value in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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
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.Builder
avoiding the need to create one manually viaByteMatchSetSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tobyteMatchSets(List<ByteMatchSetSummary>)
.- 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:
-