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