Constructs a confirmSignUp input.

Param: username

a standard username, potentially an email/phone number

Param: confirmationCode

the user's confirmation code sent to email or cellphone

Param: options

optional parameters for the Sign Up process, including user attributes

interface AuthConfirmSignUpInput<ServiceOptions> {
    confirmationCode: string;
    options?: ServiceOptions;
    username: string;
}

Type Parameters

Properties

confirmationCode: string
options?: ServiceOptions
username: string