update_user_attributes
Modify user profile attributes in AWS Cognito by specifying name-value pairs to update user information and maintain accurate account details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attributes | Yes |
Input Schema (JSON Schema)
{
"properties": {
"attributes": {
"items": {
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"attributes"
],
"type": "object"
}