Awso_cognito_idp.ChangePasswordRequestSourceRepresents the request to change a user password.
type nonrec t = {previousPassword : PasswordType.t option;The user's previous password. Required if the user has a password. If the user has no password and only signs in with passwordless authentication options, you can omit this parameter.
*)proposedPassword : PasswordType.t;A new password that you prompted the user to enter in your application.
*)accessToken : TokenModelType.t;A valid access token that Amazon Cognito issued to the user whose password you want to change.
*)}val make :
?previousPassword:??? ->
proposedPassword:PasswordType.t ->
accessToken:TokenModelType.t ->
unit ->
t