Class ListAliasesResult
- java.lang.Object
-
- com.amazonaws.services.gamelift.model.ListAliasesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class ListAliasesResult extends Object implements Serializable, Cloneable
Represents the returned data in response to a request action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListAliasesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListAliasesResult
clone()
boolean
equals(Object obj)
List<Alias>
getAliases()
Collection of alias records that match the list request.String
getNextToken()
Token indicating where to resume retrieving results on the next call to this action.int
hashCode()
void
setAliases(Collection<Alias> aliases)
Collection of alias records that match the list request.void
setNextToken(String nextToken)
Token indicating where to resume retrieving results on the next call to this action.String
toString()
Returns a string representation of this object; useful for testing and debugging.ListAliasesResult
withAliases(Alias... aliases)
Collection of alias records that match the list request.ListAliasesResult
withAliases(Collection<Alias> aliases)
Collection of alias records that match the list request.ListAliasesResult
withNextToken(String nextToken)
Token indicating where to resume retrieving results on the next call to this action.
-
-
-
Method Detail
-
getAliases
public List<Alias> getAliases()
Collection of alias records that match the list request.
- Returns:
- Collection of alias records that match the list request.
-
setAliases
public void setAliases(Collection<Alias> aliases)
Collection of alias records that match the list request.
- Parameters:
aliases
- Collection of alias records that match the list request.
-
withAliases
public ListAliasesResult withAliases(Alias... aliases)
Collection of alias records that match the list request.
NOTE: This method appends the values to the existing list (if any). Use
setAliases(java.util.Collection)
orwithAliases(java.util.Collection)
if you want to override the existing values.- Parameters:
aliases
- Collection of alias records that match the list request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withAliases
public ListAliasesResult withAliases(Collection<Alias> aliases)
Collection of alias records that match the list request.
- Parameters:
aliases
- Collection of alias records that match the list request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
Token indicating where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.
If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.
- Parameters:
nextToken
- Token indicating where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.
-
getNextToken
public String getNextToken()
Token indicating where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.
If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.
- Returns:
- Token indicating where to resume retrieving results on the next
call to this action. If no token is returned, these results
represent the end of the list.
If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.
-
withNextToken
public ListAliasesResult withNextToken(String nextToken)
Token indicating where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.
If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.
- Parameters:
nextToken
- Token indicating where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.If a request has a limit that exactly matches the number of remaining results, a token is returned even though there are no more results to retrieve.
- 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 ListAliasesResult clone()
-
-