Вот как я это реализовал (на английском языке)
Служба аутентификации:
import Auth from '@aws-amplify/auth';
...
customSignupFunction(usrname, psw, phone) {
const username = usrname;
const password = psw;
const phone_number = phone;
return Auth.signUp({
username,
password,
attributes: {
phone_number,
//more attributes
}
}).then(res => {
//do something
}).catch(err => console.error(err))
}