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