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