UNPKG

625 BTypeScriptView Raw
1import { SendUserAttributeVerificationCodeInput, SendUserAttributeVerificationCodeOutput } from '../types';
2/**
3 * Resends user's confirmation code when updating attributes while authenticated.
4 *
5 * @param input - The SendUserAttributeVerificationCodeInput object
6 * @returns SendUserAttributeVerificationCodeOutput
7 * @throws - {@link GetUserAttributeVerificationException}
8 * @throws AuthTokenConfigException - Thrown when the token provider config is invalid.
9 */
10export declare const sendUserAttributeVerificationCode: (input: SendUserAttributeVerificationCodeInput) => Promise<SendUserAttributeVerificationCodeOutput>;