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