sign_in
Authenticate users with username and password credentials to access AWS Cognito protected applications and services.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
password | Yes | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"password": {
"type": "string"
},
"username": {
"type": "string"
}
},
"required": [
"username",
"password"
],
"type": "object"
}