Class DescribeUserPoolClientResult
- java.lang.Object
-
- com.amazonaws.services.cognitoidp.model.DescribeUserPoolClientResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeUserPoolClientResult extends Object implements Serializable, Cloneable
Represents the response from the server from a request to describe the user pool client.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeUserPoolClientResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeUserPoolClientResult
clone()
boolean
equals(Object obj)
UserPoolClientType
getUserPoolClient()
The user pool client from a server response to describe the user pool client.int
hashCode()
void
setUserPoolClient(UserPoolClientType userPoolClient)
The user pool client from a server response to describe the user pool client.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeUserPoolClientResult
withUserPoolClient(UserPoolClientType userPoolClient)
The user pool client from a server response to describe the user pool client.
-
-
-
Method Detail
-
setUserPoolClient
public void setUserPoolClient(UserPoolClientType userPoolClient)
The user pool client from a server response to describe the user pool client.
- Parameters:
userPoolClient
- The user pool client from a server response to describe the user pool client.
-
getUserPoolClient
public UserPoolClientType getUserPoolClient()
The user pool client from a server response to describe the user pool client.
- Returns:
- The user pool client from a server response to describe the user pool client.
-
withUserPoolClient
public DescribeUserPoolClientResult withUserPoolClient(UserPoolClientType userPoolClient)
The user pool client from a server response to describe the user pool client.
- Parameters:
userPoolClient
- The user pool client from a server response to describe the user pool client.- 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 DescribeUserPoolClientResult clone()
-
-