Class GetAuthorizersResult
- java.lang.Object
-
- com.amazonaws.services.apigateway.model.GetAuthorizersResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class GetAuthorizersResult extends Object implements Serializable, Cloneable
Represents a collection of Authorizer resources.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetAuthorizersResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetAuthorizersResult
clone()
boolean
equals(Object obj)
List<Authorizer>
getItems()
Gets the current list of Authorizer resources in the collection.String
getPosition()
int
hashCode()
void
setItems(Collection<Authorizer> items)
Gets the current list of Authorizer resources in the collection.void
setPosition(String position)
String
toString()
Returns a string representation of this object; useful for testing and debugging.GetAuthorizersResult
withItems(Authorizer... items)
Gets the current list of Authorizer resources in the collection.GetAuthorizersResult
withItems(Collection<Authorizer> items)
Gets the current list of Authorizer resources in the collection.GetAuthorizersResult
withPosition(String position)
-
-
-
Method Detail
-
setPosition
public void setPosition(String position)
- Parameters:
position
-
-
getPosition
public String getPosition()
- Returns:
-
withPosition
public GetAuthorizersResult withPosition(String position)
- Parameters:
position
-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getItems
public List<Authorizer> getItems()
Gets the current list of Authorizer resources in the collection.
- Returns:
- Gets the current list of Authorizer resources in the collection.
-
setItems
public void setItems(Collection<Authorizer> items)
Gets the current list of Authorizer resources in the collection.
- Parameters:
items
- Gets the current list of Authorizer resources in the collection.
-
withItems
public GetAuthorizersResult withItems(Authorizer... items)
Gets the current list of Authorizer resources in the collection.
NOTE: This method appends the values to the existing list (if any). Use
setItems(java.util.Collection)
orwithItems(java.util.Collection)
if you want to override the existing values.- Parameters:
items
- Gets the current list of Authorizer resources in the collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withItems
public GetAuthorizersResult withItems(Collection<Authorizer> items)
Gets the current list of Authorizer resources in the collection.
- Parameters:
items
- Gets the current list of Authorizer resources in the collection.- 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 GetAuthorizersResult clone()
-
-