sign_up
Register new users by creating AWS Cognito accounts with email and password credentials for application authentication.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | |||
password | Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"type": "string"
},
"password": {
"type": "string"
}
},
"required": [
"password",
"email"
],
"type": "object"
}