public class ListPublicKeysResult extends Object implements Serializable, Cloneable
Returns the objects or data listed below if successful. Otherwise, returns an error.
| Constructor and Description |
|---|
ListPublicKeysResult() |
| Modifier and Type | Method and Description |
|---|---|
ListPublicKeysResult |
clone() |
boolean |
equals(Object obj) |
String |
getNextToken()
Reserved for future use.
|
List<PublicKey> |
getPublicKeyList()
Contains an array of PublicKey objects.
|
int |
hashCode() |
void |
setNextToken(String nextToken)
Reserved for future use.
|
void |
setPublicKeyList(Collection<PublicKey> publicKeyList)
Contains an array of PublicKey objects.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListPublicKeysResult |
withNextToken(String nextToken)
Reserved for future use.
|
ListPublicKeysResult |
withPublicKeyList(Collection<PublicKey> publicKeyList)
Contains an array of PublicKey objects.
|
ListPublicKeysResult |
withPublicKeyList(PublicKey... publicKeyList)
Contains an array of PublicKey objects.
|
public List<PublicKey> getPublicKeyList()
public void setPublicKeyList(Collection<PublicKey> publicKeyList)
publicKeyList - Contains an array of PublicKey objects. public ListPublicKeysResult withPublicKeyList(PublicKey... publicKeyList)
NOTE: This method appends the values to the existing list (if
any). Use setPublicKeyList(java.util.Collection) or withPublicKeyList(java.util.Collection) if you want to override the
existing values.
Returns a reference to this object so that method calls can be chained together.
publicKeyList - Contains an array of PublicKey objects. public ListPublicKeysResult withPublicKeyList(Collection<PublicKey> publicKeyList)
Returns a reference to this object so that method calls can be chained together.
publicKeyList - Contains an array of PublicKey objects. public String getNextToken()
public void setNextToken(String nextToken)
nextToken - Reserved for future use.public ListPublicKeysResult withNextToken(String nextToken)
Returns a reference to this object so that method calls can be chained together.
nextToken - Reserved for future use.public String toString()
toString in class ObjectObject.toString()public ListPublicKeysResult clone()
Copyright © 2015. All rights reserved.