Class ListSqlInjectionMatchSetsResult
- java.lang.Object
-
- com.amazonaws.services.waf.model.ListSqlInjectionMatchSetsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListSqlInjectionMatchSetsResult extends Object implements Serializable, Cloneable
The response to a ListSqlInjectionMatchSets request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListSqlInjectionMatchSetsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListSqlInjectionMatchSetsResult
clone()
boolean
equals(Object obj)
String
getNextMarker()
If you have more SqlInjectionMatchSet objects than the number that you specified forLimit
in the request, the response includes aNextMarker
value.List<SqlInjectionMatchSetSummary>
getSqlInjectionMatchSets()
An array of SqlInjectionMatchSetSummary objects.int
hashCode()
void
setNextMarker(String nextMarker)
If you have more SqlInjectionMatchSet objects than the number that you specified forLimit
in the request, the response includes aNextMarker
value.void
setSqlInjectionMatchSets(Collection<SqlInjectionMatchSetSummary> sqlInjectionMatchSets)
An array of SqlInjectionMatchSetSummary objects.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListSqlInjectionMatchSetsResult
withNextMarker(String nextMarker)
If you have more SqlInjectionMatchSet objects than the number that you specified forLimit
in the request, the response includes aNextMarker
value.ListSqlInjectionMatchSetsResult
withSqlInjectionMatchSets(SqlInjectionMatchSetSummary... sqlInjectionMatchSets)
An array of SqlInjectionMatchSetSummary objects.ListSqlInjectionMatchSetsResult
withSqlInjectionMatchSets(Collection<SqlInjectionMatchSetSummary> sqlInjectionMatchSets)
An array of SqlInjectionMatchSetSummary objects.
-
-
-
Method Detail
-
setNextMarker
public void setNextMarker(String nextMarker)
If you have more SqlInjectionMatchSet objects than the number that you specified for
Limit
in the request, the response includes aNextMarker
value. To list moreSqlInjectionMatchSet
objects, submit anotherListSqlInjectionMatchSets
request, and specify theNextMarker
value from the response in theNextMarker
value in the next request.- Parameters:
nextMarker
- If you have more SqlInjectionMatchSet objects than the number that you specified forLimit
in the request, the response includes aNextMarker
value. To list moreSqlInjectionMatchSet
objects, submit anotherListSqlInjectionMatchSets
request, and specify theNextMarker
value from the response in theNextMarker
value in the next request.
-
getNextMarker
public String getNextMarker()
If you have more SqlInjectionMatchSet objects than the number that you specified for
Limit
in the request, the response includes aNextMarker
value. To list moreSqlInjectionMatchSet
objects, submit anotherListSqlInjectionMatchSets
request, and specify theNextMarker
value from the response in theNextMarker
value in the next request.- Returns:
- If you have more SqlInjectionMatchSet objects than the
number that you specified for
Limit
in the request, the response includes aNextMarker
value. To list moreSqlInjectionMatchSet
objects, submit anotherListSqlInjectionMatchSets
request, and specify theNextMarker
value from the response in theNextMarker
value in the next request.
-
withNextMarker
public ListSqlInjectionMatchSetsResult withNextMarker(String nextMarker)
If you have more SqlInjectionMatchSet objects than the number that you specified for
Limit
in the request, the response includes aNextMarker
value. To list moreSqlInjectionMatchSet
objects, submit anotherListSqlInjectionMatchSets
request, and specify theNextMarker
value from the response in theNextMarker
value in the next request.- Parameters:
nextMarker
- If you have more SqlInjectionMatchSet objects than the number that you specified forLimit
in the request, the response includes aNextMarker
value. To list moreSqlInjectionMatchSet
objects, submit anotherListSqlInjectionMatchSets
request, and specify theNextMarker
value from the response in theNextMarker
value in the next request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getSqlInjectionMatchSets
public List<SqlInjectionMatchSetSummary> getSqlInjectionMatchSets()
An array of SqlInjectionMatchSetSummary objects.
- Returns:
- An array of SqlInjectionMatchSetSummary objects.
-
setSqlInjectionMatchSets
public void setSqlInjectionMatchSets(Collection<SqlInjectionMatchSetSummary> sqlInjectionMatchSets)
An array of SqlInjectionMatchSetSummary objects.
- Parameters:
sqlInjectionMatchSets
- An array of SqlInjectionMatchSetSummary objects.
-
withSqlInjectionMatchSets
public ListSqlInjectionMatchSetsResult withSqlInjectionMatchSets(SqlInjectionMatchSetSummary... sqlInjectionMatchSets)
An array of SqlInjectionMatchSetSummary objects.
NOTE: This method appends the values to the existing list (if any). Use
setSqlInjectionMatchSets(java.util.Collection)
orwithSqlInjectionMatchSets(java.util.Collection)
if you want to override the existing values.- Parameters:
sqlInjectionMatchSets
- An array of SqlInjectionMatchSetSummary objects.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withSqlInjectionMatchSets
public ListSqlInjectionMatchSetsResult withSqlInjectionMatchSets(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.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListSqlInjectionMatchSetsResult clone()
-
-