public class ListUserPoolClientsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the response from the server that lists user pool clients.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
nextToken
An identifier that was returned from the previous call to this operation,
which can be used to return the next set of items in the list.
|
private java.util.List<UserPoolClientDescription> |
userPoolClients
The user pool clients in the response that lists user pool clients.
|
Constructor and Description |
---|
ListUserPoolClientsResult() |
Modifier and Type | Method and Description |
---|---|
ListUserPoolClientsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getNextToken()
An identifier that was returned from the previous call to this operation,
which can be used to return the next set of items in the list.
|
java.util.List<UserPoolClientDescription> |
getUserPoolClients()
The user pool clients in the response that lists user pool clients.
|
int |
hashCode() |
void |
setNextToken(java.lang.String nextToken)
An identifier that was returned from the previous call to this operation,
which can be used to return the next set of items in the list.
|
void |
setUserPoolClients(java.util.Collection<UserPoolClientDescription> userPoolClients)
The user pool clients in the response that lists user pool clients.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListUserPoolClientsResult |
withNextToken(java.lang.String nextToken)
An identifier that was returned from the previous call to this operation,
which can be used to return the next set of items in the list.
|
ListUserPoolClientsResult |
withUserPoolClients(java.util.Collection<UserPoolClientDescription> userPoolClients)
The user pool clients in the response that lists user pool clients.
|
ListUserPoolClientsResult |
withUserPoolClients(UserPoolClientDescription... userPoolClients)
The user pool clients in the response that lists user pool clients.
|
private java.util.List<UserPoolClientDescription> userPoolClients
The user pool clients in the response that lists user pool clients.
private java.lang.String nextToken
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
public java.util.List<UserPoolClientDescription> getUserPoolClients()
The user pool clients in the response that lists user pool clients.
public void setUserPoolClients(java.util.Collection<UserPoolClientDescription> userPoolClients)
The user pool clients in the response that lists user pool clients.
userPoolClients
- The user pool clients in the response that lists user pool
clients.public ListUserPoolClientsResult withUserPoolClients(UserPoolClientDescription... userPoolClients)
The user pool clients in the response that lists user pool clients.
NOTE: This method appends the values to the existing list (if
any). Use setUserPoolClients(java.util.Collection)
or
withUserPoolClients(java.util.Collection)
if you want to
override the existing values.
userPoolClients
- The user pool clients in the response that lists user pool
clients.public ListUserPoolClientsResult withUserPoolClients(java.util.Collection<UserPoolClientDescription> userPoolClients)
The user pool clients in the response that lists user pool clients.
userPoolClients
- The user pool clients in the response that lists user pool
clients.public void setNextToken(java.lang.String nextToken)
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
nextToken
- An identifier that was returned from the previous call to this
operation, which can be used to return the next set of items in
the list.public java.lang.String getNextToken()
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
public ListUserPoolClientsResult withNextToken(java.lang.String nextToken)
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
nextToken
- An identifier that was returned from the previous call to this
operation, which can be used to return the next set of items in
the list.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ListUserPoolClientsResult clone()
clone
in class java.lang.Object