public class ListIdentitiesResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
private java.util.List<IdentityDescription> |
identities
An object containing a set of identities and associated mappings.
|
private java.lang.String |
identityPoolId
An identity pool ID in the format REGION:GUID.
|
private java.lang.String |
nextToken
A pagination token.
|
Constructor and Description |
---|
ListIdentitiesResult() |
Modifier and Type | Method and Description |
---|---|
ListIdentitiesResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<IdentityDescription> |
getIdentities()
An object containing a set of identities and associated mappings.
|
java.lang.String |
getIdentityPoolId()
An identity pool ID in the format REGION:GUID.
|
java.lang.String |
getNextToken()
A pagination token.
|
int |
hashCode() |
void |
setIdentities(java.util.Collection<IdentityDescription> identities)
An object containing a set of identities and associated mappings.
|
void |
setIdentityPoolId(java.lang.String identityPoolId)
An identity pool ID in the format REGION:GUID.
|
void |
setNextToken(java.lang.String nextToken)
A pagination token.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListIdentitiesResult |
withIdentities(java.util.Collection<IdentityDescription> identities)
An object containing a set of identities and associated mappings.
|
ListIdentitiesResult |
withIdentities(IdentityDescription... identities)
An object containing a set of identities and associated mappings.
|
ListIdentitiesResult |
withIdentityPoolId(java.lang.String identityPoolId)
An identity pool ID in the format REGION:GUID.
|
ListIdentitiesResult |
withNextToken(java.lang.String nextToken)
A pagination token.
|
private java.lang.String identityPoolId
private java.util.List<IdentityDescription> identities
private java.lang.String nextToken
public void setIdentityPoolId(java.lang.String identityPoolId)
identityPoolId
- An identity pool ID in the format REGION:GUID.public java.lang.String getIdentityPoolId()
public ListIdentitiesResult withIdentityPoolId(java.lang.String identityPoolId)
identityPoolId
- An identity pool ID in the format REGION:GUID.public java.util.List<IdentityDescription> getIdentities()
public void setIdentities(java.util.Collection<IdentityDescription> identities)
identities
- An object containing a set of identities and associated mappings.public ListIdentitiesResult withIdentities(IdentityDescription... identities)
NOTE: This method appends the values to the existing list (if
any). Use setIdentities(java.util.Collection)
or
withIdentities(java.util.Collection)
if you want to override the
existing values.
identities
- An object containing a set of identities and associated mappings.public ListIdentitiesResult withIdentities(java.util.Collection<IdentityDescription> identities)
identities
- An object containing a set of identities and associated mappings.public void setNextToken(java.lang.String nextToken)
nextToken
- A pagination token.public java.lang.String getNextToken()
public ListIdentitiesResult withNextToken(java.lang.String nextToken)
nextToken
- A pagination token.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 ListIdentitiesResult clone()
clone
in class java.lang.Object