Awso_cognito_idp.DeleteUserAttributesRequestSourceRepresents the request to delete user attributes.
type nonrec t = {userAttributeNames : AttributeNameListType.t;An array of strings representing the user attribute names you want to delete. For custom attributes, you must prepend the custom: prefix to the attribute name, for example custom:department.
*)accessToken : TokenModelType.t;A valid access token that Amazon Cognito issued to the currently signed-in user. Must include a scope claim for aws.cognito.signin.user.admin.
*)}val make :
userAttributeNames:AttributeNameListType.t ->
accessToken:TokenModelType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of AttributeNameType.t ] list
| `String of TokenModelType.t ])
list ]