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