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