Class UpdateUserAttributesResult
- java.lang.Object
-
- com.amazonaws.services.cognitoidp.model.UpdateUserAttributesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class UpdateUserAttributesResult extends Object implements Serializable, Cloneable
Represents the response from the server for the request to update user attributes.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateUserAttributesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateUserAttributesResult
clone()
boolean
equals(Object obj)
List<CodeDeliveryDetailsType>
getCodeDeliveryDetailsList()
The code delivery details list from the server for the request to update user attributes.int
hashCode()
void
setCodeDeliveryDetailsList(Collection<CodeDeliveryDetailsType> codeDeliveryDetailsList)
The code delivery details list from the server for the request to update user attributes.String
toString()
Returns a string representation of this object; useful for testing and debugging.UpdateUserAttributesResult
withCodeDeliveryDetailsList(CodeDeliveryDetailsType... codeDeliveryDetailsList)
The code delivery details list from the server for the request to update user attributes.UpdateUserAttributesResult
withCodeDeliveryDetailsList(Collection<CodeDeliveryDetailsType> codeDeliveryDetailsList)
The code delivery details list from the server for the request to update user attributes.
-
-
-
Method Detail
-
getCodeDeliveryDetailsList
public List<CodeDeliveryDetailsType> getCodeDeliveryDetailsList()
The code delivery details list from the server for the request to update user attributes.
- Returns:
- The code delivery details list from the server for the request to update user attributes.
-
setCodeDeliveryDetailsList
public void setCodeDeliveryDetailsList(Collection<CodeDeliveryDetailsType> codeDeliveryDetailsList)
The code delivery details list from the server for the request to update user attributes.
- Parameters:
codeDeliveryDetailsList
- The code delivery details list from the server for the request to update user attributes.
-
withCodeDeliveryDetailsList
public UpdateUserAttributesResult withCodeDeliveryDetailsList(CodeDeliveryDetailsType... codeDeliveryDetailsList)
The code delivery details list from the server for the request to update user attributes.
NOTE: This method appends the values to the existing list (if any). Use
setCodeDeliveryDetailsList(java.util.Collection)
orwithCodeDeliveryDetailsList(java.util.Collection)
if you want to override the existing values.- Parameters:
codeDeliveryDetailsList
- The code delivery details list from the server for the request to update user attributes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withCodeDeliveryDetailsList
public UpdateUserAttributesResult withCodeDeliveryDetailsList(Collection<CodeDeliveryDetailsType> codeDeliveryDetailsList)
The code delivery details list from the server for the request to update user attributes.
- Parameters:
codeDeliveryDetailsList
- The code delivery details list from the server for the request to update user attributes.- 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 UpdateUserAttributesResult clone()
-
-