The parameters for constructing a Sign Up input.

Param: username

a standard username, potentially an email/phone number

Param: password

the user's password, may be required depending on your Cognito User Pool configuration

Param: options

optional parameters for the Sign Up process, including user attributes

interface AuthSignUpInput<ServiceOptions> {
    options?: ServiceOptions;
    password?: string;
    username: string;
}

Type Parameters

Properties

options?: ServiceOptions
password?: string
username: string