UNPKG

644 BTypeScriptView Raw
1import { ResendSignUpCodeInput, ResendSignUpCodeOutput } from '../types';
2/**
3 * Resend the confirmation code while signing up
4 *
5 * @param input - The ResendSignUpCodeInput object
6 * @returns ResendSignUpCodeOutput
7 * @throws service: {@link ResendConfirmationException } - Cognito service errors thrown when resending the code.
8 * @throws validation: {@link AuthValidationErrorCode } - Validation errors thrown either username are not defined.
9 * @throws AuthTokenConfigException - Thrown when the token provider config is invalid.
10 */
11export declare function resendSignUpCode(input: ResendSignUpCodeInput): Promise<ResendSignUpCodeOutput>;