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