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 ListWebACLsResultclone()booleanequals(Object obj)StringgetNextMarker()If you have moreWebACLobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue.List<WebACLSummary>getWebACLs()An array of WebACLSummary objects.inthashCode()voidsetNextMarker(String nextMarker)If you have moreWebACLobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue.voidsetWebACLs(Collection<WebACLSummary> webACLs)An array of WebACLSummary objects.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListWebACLsResultwithNextMarker(String nextMarker)If you have moreWebACLobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue.ListWebACLsResultwithWebACLs(WebACLSummary... webACLs)An array of WebACLSummary objects.ListWebACLsResultwithWebACLs(Collection<WebACLSummary> webACLs)An array of WebACLSummary objects.
-
-
-
Method Detail
-
setNextMarker
public void setNextMarker(String nextMarker)
If you have more
WebACLobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreWebACLobjects, submit anotherListWebACLsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.- Parameters:
nextMarker- If you have moreWebACLobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreWebACLobjects, submit anotherListWebACLsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.
-
getNextMarker
public String getNextMarker()
If you have more
WebACLobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreWebACLobjects, submit anotherListWebACLsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.- Returns:
- If you have more
WebACLobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreWebACLobjects, submit anotherListWebACLsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.
-
withNextMarker
public ListWebACLsResult withNextMarker(String nextMarker)
If you have more
WebACLobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreWebACLobjects, submit anotherListWebACLsrequest, and specify theNextMarkervalue from the response in theNextMarkervalue in the next request.- Parameters:
nextMarker- If you have moreWebACLobjects than the number that you specified forLimitin the request, the response includes aNextMarkervalue. To list moreWebACLobjects, submit anotherListWebACLsrequest, 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.
-
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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ListWebACLsResult clone()
-
-