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